Neos\ContentRepository\Eel\FlowQueryOperations\PropertyOperation::canEvaluate PHP 메소드

canEvaluate() 공개 메소드

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