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