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