Neos\Flow\Security\Authorization\Privilege\Method\MethodTargetExpressionParser::parseDesignatorPointcut PHP Метод

parseDesignatorPointcut() защищенный Метод

Throws an exception, as recursive privilege targets are not allowed.
protected parseDesignatorPointcut ( string $operator, string $pointcutExpression, PointcutFilterComposite $pointcutFilterComposite, array &$trace = [] ) : void
$operator string The operator
$pointcutExpression string The pointcut expression (value of the designator)
$pointcutFilterComposite Neos\Flow\Aop\Pointcut\PointcutFilterComposite An instance of the pointcut filter composite. The result (ie. the pointcut filter) will be added to this composite object.
$trace array
Результат void
    protected function parseDesignatorPointcut($operator, $pointcutExpression, PointcutFilterComposite $pointcutFilterComposite, array &$trace = [])
    {
        throw new InvalidPointcutExpressionException('The given method privilege target matcher contained an expression for a named pointcut. This not supported! Given expression: "' . $pointcutExpression . '".', 1222014591);
    }
MethodTargetExpressionParser