Completed
Push — master ( c74cf9...480006 )
by Gaël
14:04
created
src/DeliveryChoice.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         $result = $result->WSI4_PointRelais_RechercheResult->PointsRelais->PointRelais_Details;
73 73
 
74 74
         $pickupPoints = array_map(
75
-            function ($pickupPoint) {
75
+            function($pickupPoint) {
76 76
                 return new PickupPoint($pickupPoint);
77 77
             },
78 78
             $result
Please login to merge, or discard this patch.
src/MondialRelay.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,9 +54,9 @@
 block discarded – undo
54 54
     {
55 55
         $security = $this->credentials['Enseigne'];
56 56
         foreach ($params as $param) {
57
-            $security.= $param;
57
+            $security .= $param;
58 58
         }
59
-        $security.= $this->credentials['Key'];
59
+        $security .= $this->credentials['Key'];
60 60
 
61 61
         return strtoupper(md5($security));
62 62
     }
Please login to merge, or discard this patch.
src/Resources/PickupPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
         foreach ($weekDays as $dayKey => $hours) {
136 136
             $day = [];
137 137
             $hoursCount = count($hours);
138
-            for ($i = 0; $i < $hoursCount; $i+=2) {
138
+            for ($i = 0; $i < $hoursCount; $i += 2) {
139 139
                 if (!empty($hours[$i]) && !empty($hours[$i + 1])) {
140 140
                     array_push(
141 141
                         $day,
Please login to merge, or discard this patch.