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

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

Constructor
public __construct ( string $declaringAspectClassName, string $traitName, Pointcut $pointcut )
$declaringAspectClassName string Name of the aspect containing the declaration for this introduction
$traitName string Name of the trait to introduce
$pointcut Neos\Flow\Aop\Pointcut\Pointcut The pointcut for this introduction
    public function __construct($declaringAspectClassName, $traitName, \Neos\Flow\Aop\Pointcut\Pointcut $pointcut)
    {
        $this->declaringAspectClassName = $declaringAspectClassName;
        $this->traitName = $traitName;
        $this->pointcut = $pointcut;
    }