Neos\FluidAdaptor\Core\ViewHelper\AbstractConditionViewHelper::evaluateCondition PHP Метод

evaluateCondition() защищенный статический Метод

Note: method signature does not type-hint that an array is desired, and as such, *appears* to accept any input type. There is no type hint here for legacy reasons - the signature is kept compatible with third party packages which depending on PHP version would error out if this signature was not compatible with that of existing and in-production subclasses that will be using this base class in the future. Let this be a warning if someone considers changing this method signature!
protected static evaluateCondition ( array | null $arguments = null, TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface $renderingContext ) : boolean
$arguments array | null
$renderingContext TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface
Результат boolean
    protected static function evaluateCondition($arguments = null, RenderingContextInterface $renderingContext)
    {
        return (bool) $arguments['condition'];
    }