Neos\ContentRepository\Security\Authorization\Privilege\Node\PropertyAwareNodePrivilegeContext::nodePropertyIsIn PHP Метод

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

public nodePropertyIsIn ( string | array $propertyNames ) : boolean
$propertyNames string | array
Результат boolean
    public function nodePropertyIsIn($propertyNames)
    {
        if (!is_array($propertyNames)) {
            $propertyNames = array($propertyNames);
        }
        $this->propertyNames = $propertyNames;
        return true;
    }