12 lines
171 B
PHP
12 lines
171 B
PHP
|
<?php
|
||
|
|
||
|
class MyClass
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* The name of the main property, or NULL if there is none.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $mainPropertyName = NULL;
|
||
|
}
|