Total Complexity | 6 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class PhpClassInvoker implements InvokerInterface |
||
13 | { |
||
14 | public function __construct( |
||
15 | private readonly NamedParameterInterface $params, |
||
16 | private readonly ExtraMethodInvoker $extraMethod, |
||
17 | private readonly LoggerInterface $logger, |
||
18 | ) { |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function invoke(AbstractRequest $request): ResourceObject |
||
50 | } |
||
51 | } |
||
52 |