Neos\Flow\Aop\Pointcut\PointcutFilter::__construct PHP Метод

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

The constructor - initializes the pointcut filter with the name of the pointcut we're referring to
public __construct ( string $aspectClassName, string $pointcutMethodName )
$aspectClassName string Name of the aspect class containing the pointcut
$pointcutMethodName string Name of the method which acts as an anchor for the pointcut name and expression
    public function __construct($aspectClassName, $pointcutMethodName)
    {
        $this->aspectClassName = $aspectClassName;
        $this->pointcutMethodName = $pointcutMethodName;
    }