Passed
Push — master ( 48a16c...0e515b )
by Roberto
02:38
created
src/Api/Elevation.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,18 +67,18 @@
 block discarded – undo
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
 	/**
Please login to merge, or discard this patch.