Completed
Push — master ( f18332...65e840 )
by Gabriel
03:52
created
src/Request.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -48,11 +48,11 @@
 block discarded – undo
48 48
         $content = file_get_contents($this->template);
49 49
 
50 50
         $data = array_merge($data, [
51
-          'ThreePLID' => $this->getId(),
52
-          'Login' => $this->getLogin(),
53
-          'Password' => $this->getPassword(),
54
-          'CustomerID' => $this->getCustomerId(),
55
-          'FacilityID' => $this->getFacilityId()
51
+            'ThreePLID' => $this->getId(),
52
+            'Login' => $this->getLogin(),
53
+            'Password' => $this->getPassword(),
54
+            'CustomerID' => $this->getCustomerId(),
55
+            'FacilityID' => $this->getFacilityId()
56 56
         ]);
57 57
 
58 58
         foreach ($data as $prop => $value) {
Please login to merge, or discard this patch.
src/Order/OrderRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
             'http://www.JOI.com/schemas/ViaSub.WMS/FindOrders'
17 17
         );
18 18
 
19
-        $request->setTemplate(__DIR__ . '/../Request/findOrders.xml');
19
+        $request->setTemplate(__DIR__.'/../Request/findOrders.xml');
20 20
         $response = $request->fetch([
21 21
             'BeginDate' => $beginDate->format('YYYY-MM-DD'),
22 22
             'EndDate' => $endDate->format('YYYY-MM-DD')
Please login to merge, or discard this patch.