eZ\Publish\Core\Repository\Values\User\User::__isset PHP Method

__isset() public method

Magic isset for signaling existence of convenience properties.
public __isset ( string $property ) : boolean
$property string
return 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);
    }