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

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

The constructor - initializes the class type filter with the class or interface name
public __construct ( string $interfaceOrClassName )
$interfaceOrClassName string Interface or a class name to match against
    public function __construct($interfaceOrClassName)
    {
        $this->interfaceOrClassName = $interfaceOrClassName;
        if (!interface_exists($this->interfaceOrClassName)) {
            if (!class_exists($this->interfaceOrClassName)) {
                throw new Exception('The specified interface / class "' . $this->interfaceOrClassName . '" for the pointcut class type filter does not exist.', 1172483343);
            }
            $this->isInterface = false;
        }
    }