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);
    }