@@ -67,18 +67,18 @@ |
||
67 | 67 | */ |
68 | 68 | public function parseLocations($locations): string { |
69 | 69 | |
70 | - if($locations instanceof Path) { |
|
70 | + if ($locations instanceof Path) { |
|
71 | 71 | $locations = $locations->toArray(); |
72 | 72 | } |
73 | 73 | |
74 | 74 | if (is_array($locations)) { |
75 | - $locations = implode('|', array_map(function ($item) { |
|
75 | + $locations = implode('|', array_map(function($item) { |
|
76 | 76 | |
77 | - return (string)$item; |
|
77 | + return (string) $item; |
|
78 | 78 | }, $locations)); |
79 | 79 | } |
80 | 80 | |
81 | - return (string)$locations; |
|
81 | + return (string) $locations; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |