| 1 | <?php |
||
| 13 | class Pointcut extends \Ray\Aop\Pointcut |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string[] |
||
| 17 | */ |
||
| 18 | public $interceptors = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param AbstractMatcher $classMatcher |
||
| 22 | * @param AbstractMatcher $methodMatcher |
||
| 23 | * @param string[] $interceptors array of interceptor class name |
||
| 24 | */ |
||
| 25 | 40 | public function __construct(AbstractMatcher $classMatcher, AbstractMatcher $methodMatcher, array $interceptors) |
|
| 31 | } |
||
| 32 |