| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function format(LinkContainer $linkContainer): array |
||
| 10 | { |
||
| 11 | $format = [ |
||
| 12 | $linkContainer->name => [ |
||
| 13 | 'method' => $linkContainer->method, |
||
| 14 | 'action' => $linkContainer->action, |
||
| 15 | ], |
||
| 16 | ]; |
||
| 17 | |||
| 18 | return is_null($linkContainer->prefix) |
||
| 19 | ? $format |
||
| 20 | : [$linkContainer->prefix => $format]; |
||
| 21 | } |
||
| 23 |