Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function resolveOperationPath(string $resourceShortName, array $operation, bool $collection) : string |
||
32 | { |
||
33 | if (isset($operation['path'])) { |
||
34 | return $operation['path']; |
||
35 | } |
||
36 | |||
37 | return $this->deferred->resolveOperationPath($resourceShortName, $operation, $collection); |
||
38 | } |
||
39 | } |
||
40 |