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