Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Pointcut |
||
8 | { |
||
9 | /** @var AbstractMatcher */ |
||
10 | public $classMatcher; |
||
11 | |||
12 | /** @var AbstractMatcher */ |
||
13 | public $methodMatcher; |
||
14 | |||
15 | /** @var array<MethodInterceptor|class-string<MethodInterceptor>> */ |
||
|
|||
16 | public $interceptors = []; |
||
17 | |||
18 | /** |
||
19 | * @param array<MethodInterceptor|class-string<MethodInterceptor>> $interceptors |
||
20 | */ |
||
21 | public function __construct(AbstractMatcher $classMatcher, AbstractMatcher $methodMatcher, array $interceptors) |
||
28 |