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