| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 8 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | trait DocBlockResolverAwareTrait |
||
| 11 | { |
||
| 12 | /** @var array<string,?mixed> */ |
||
| 13 | private array $customServices = []; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @psalm-suppress LessSpecificImplementedReturnType |
||
| 17 | * |
||
| 18 | * @param string $method |
||
| 19 | * @param array $parameters |
||
| 20 | * |
||
| 21 | * @return mixed |
||
| 22 | */ |
||
| 23 | 25 | public function __call($method = '', $parameters = []) |
|
| 38 |