Neos\ContentRepository\Eel\FlowQueryOperations\PropertyOperation::canEvaluate PHP Méthode

canEvaluate() public méthode

We can only handle ContentRepository Nodes.
public canEvaluate ( mixed $context ) : boolean
$context mixed
Résultat boolean
    public function canEvaluate($context)
    {
        return isset($context[0]) && $context[0] instanceof NodeInterface;
    }
PropertyOperation