| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class IsInMethodMatcher extends AbstractMatcher |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | * |
||
| 18 | * @phpstan-param ReflectionClass<object> $class |
||
| 19 | * @phpstan-param array<mixed> $arguments |
||
| 20 | * |
||
| 21 | * @codeCoverageIgnore |
||
| 22 | */ |
||
| 23 | public function matchesClass(ReflectionClass $class, array $arguments): bool |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | * |
||
| 33 | * @phpstan-param array<mixed> $arguments |
||
| 34 | */ |
||
| 35 | public function matchesMethod(ReflectionMethod $method, array $arguments): bool |
||
| 43 |