10 lines
148 B
PHP
10 lines
148 B
PHP
|
<?php
|
||
|
|
||
|
class MyClass
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* The name of the main property, or NULL if there is none.
|
||
|
*/
|
||
|
protected $mainPropertyName = 'hello';
|
||
|
}
|