1 | <?php |
||
23 | class MatchInheritedPointcut implements Pointcut |
||
24 | { |
||
25 | use PointcutClassFilterTrait; |
||
26 | |||
27 | /** |
||
28 | * Performs matching of point of code |
||
29 | * |
||
30 | * @param mixed $point Specific part of code, can be any Reflection class |
||
31 | * @param null|mixed $context Related context, can be class or namespace |
||
32 | * @param null|string|object $instance Invocation instance or string for static calls |
||
33 | * @param null|array $arguments Dynamic arguments for method |
||
34 | */ |
||
35 | public function matches($point, $context = null, $instance = null, array $arguments = null): bool |
||
51 | |||
52 | /** |
||
53 | * Returns the kind of point filter |
||
54 | */ |
||
55 | 1 | public function getKind(): int |
|
59 | } |
||
60 |