eZ\Publish\Core\Repository\Values\User\User::__isset PHP Метод

__isset() публичный Метод

Magic isset for signaling existence of convenience properties.
public __isset ( string $property ) : boolean
$property string
Результат boolean
    public function __isset($property)
    {
        if ($property === 'contentInfo') {
            return true;
        }
        if ($property === 'id') {
            return true;
        }
        if ($property === 'versionInfo') {
            return true;
        }
        if ($property === 'fields') {
            return true;
        }
        return parent::__isset($property);
    }