Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 4 | ||
Bugs | 1 | Features | 2 |
1 | <?php |
||
33 | 3 | public function link(EndpointIdentifier $endpoint, $params = []) |
|
34 | { |
||
35 | 3 | $params = array_merge([ |
|
36 | 3 | 'version' => $endpoint->getVersion(), |
|
37 | 3 | 'package' => $endpoint->getPackage(), |
|
38 | 3 | 'apiAction' => $endpoint->getApiAction() |
|
39 | 3 | ], $params); |
|
40 | 3 | return $this->linkGenerator->link('Api:Api:default', $params); |
|
41 | } |
||
42 | } |
||
43 |