| 1 | <?php |
||
| 9 | class Pointcut |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var AbstractMatcher |
||
| 13 | */ |
||
| 14 | public $classMatcher; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var AbstractMatcher |
||
| 18 | */ |
||
| 19 | public $methodMatcher; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var Interceptor[] |
||
| 23 | */ |
||
| 24 | public $interceptors = []; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param AbstractMatcher $classMatcher |
||
| 28 | * @param AbstractMatcher $methodMatcher |
||
| 29 | * @param Interceptor[] $interceptors |
||
| 30 | */ |
||
| 31 | 31 | public function __construct(AbstractMatcher $classMatcher, AbstractMatcher $methodMatcher, array $interceptors) |
|
| 37 | } |
||
| 38 |