| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function transform(Route $route): array |
||
| 19 | { |
||
| 20 | return $this->escape([ |
||
| 21 | 'name' => (string) $route->name, |
||
| 22 | 'path' => (string) $route->path, |
||
| 23 | 'action' => (string) $route->action, |
||
| 24 | 'middleware' => (string) $route->middleware, |
||
| 25 | 'parameters' => (string) $route->parameters, |
||
| 26 | 'count' => (int) $route->count, |
||
| 27 | ]); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |