Neos\Flow\Aop\Pointcut\PointcutClassNameFilter::__construct PHP Method

__construct() public method

The constructor - initializes the class filter with the class filter expression
public __construct ( string $classFilterExpression )
$classFilterExpression string A regular expression which defines which class names should match
    public function __construct($classFilterExpression)
    {
        $this->classFilterExpression = '/^' . str_replace('\\', '\\\\', $classFilterExpression) . '$/';
        $this->originalExpressionString = $classFilterExpression;
    }