@@ -54,9 +54,9 @@ |
||
| 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 | } |
@@ -135,7 +135,7 @@ |
||
| 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, |
@@ -90,7 +90,7 @@ |
||
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | $pickupPoints = array_map( |
| 93 | - function ($pickupPoint) { |
|
| 93 | + function($pickupPoint) { |
|
| 94 | 94 | return new PickupPoint($pickupPoint); |
| 95 | 95 | }, |
| 96 | 96 | $result |