Passed
Branch main (0938df)
by Dylan
02:30
created
src/services/Addresses.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     public function fetch(int $id): ?Address
24 24
     {
25 25
         /** @var Address|null $address */
26
-        $address = $this->_get('api/addresses/address' . $id);
26
+        $address = $this->_get('api/addresses/address'.$id);
27 27
         return $address;
28 28
     }
29 29
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     public function update(int $id, array $data): ?Address
51 51
     {
52 52
         /** @var Address|null $address */
53
-        $address = $this->_post('api/addresses/address/' . $id, $data);
53
+        $address = $this->_post('api/addresses/address/'.$id, $data);
54 54
         return $address;
55 55
     }
56 56
 
Please login to merge, or discard this patch.
src/services/Orders.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     public function fetch(int $id): ?Order
44 44
     {
45 45
         /** @var Order|null $fetch */
46
-        $fetch = $this->_get('api/orders/order' . $id);
46
+        $fetch = $this->_get('api/orders/order'.$id);
47 47
         return $fetch;
48 48
     }
49 49
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     public function update(int $id, array $data): ?Order
71 71
     {
72 72
         /** @var Order|null $post */
73
-        $post = $this->_post('api/orders/order/' . $id, $data);
73
+        $post = $this->_post('api/orders/order/'.$id, $data);
74 74
         return $post;
75 75
     }
76 76
 
Please login to merge, or discard this patch.
src/models/Address.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,9 @@
 block discarded – undo
59 59
      */
60 60
     public function Customer(): ?Customer
61 61
     {
62
-        if (!$this->CustomerID) return null;
62
+        if (!$this->CustomerID) {
63
+            return null;
64
+        }
63 65
 
64 66
         /** @var Customer|null $customer */
65 67
         $customer = $this->getClient()->customers->fetch($this->CustomerID);
Please login to merge, or discard this patch.
src/resource/SimpleList.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $t = $this->getItems();
63 63
         $c = $this->count();
64 64
 
65
-        return (function () use ($t, $c) {
65
+        return (function() use ($t, $c) {
66 66
             $i = 0;
67 67
 
68 68
             while ($i < $c) {
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,9 @@  discard block
 block discarded – undo
42 42
 
43 43
             foreach ($list as $item) {
44 44
                 $obj = ObjectFactory::make($this->getClient(), $item);
45
-                if (!$obj) continue;
45
+                if (!$obj) {
46
+                    continue;
47
+                }
46 48
 
47 49
                 $this->_items[] = $obj;
48 50
             }
@@ -76,6 +78,8 @@  discard block
 block discarded – undo
76 78
      */
77 79
     public function first(): ?Model
78 80
     {
79
-        foreach ($this as $obj) return $obj;
81
+        foreach ($this as $obj) {
82
+            return $obj;
83
+        }
80 84
     }
81 85
 }
Please login to merge, or discard this patch.
src/services/CustomPages.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function fetch(int $id): ?CustomPage
38 38
     {
39 39
         /** @var CustomPage|null $fetch */
40
-        $fetch = $this->_get('api/pages/page' . $id);
40
+        $fetch = $this->_get('api/pages/page'.$id);
41 41
         return $fetch;
42 42
     }
43 43
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     public function update(int $id, array $data): ?CustomPage
65 65
     {
66 66
         /** @var CustomPage|null $post */
67
-        $post = $this->_post('api/pages/page/' . $id, $data);
67
+        $post = $this->_post('api/pages/page/'.$id, $data);
68 68
         return $post;
69 69
     }
70 70
 
Please login to merge, or discard this patch.
src/services/Collections.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     public function fetch(int $id): ?Collection
23 23
     {
24 24
         /** @var Collection|null $fetch */
25
-        $fetch = $this->_get('api/collections/collection' . $id);
25
+        $fetch = $this->_get('api/collections/collection'.$id);
26 26
         return $fetch;
27 27
     }
28 28
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function update(int $id, array $data): ?Collection
50 50
     {
51 51
         /** @var Collection|null $post */
52
-        $post = $this->_post('api/collections/collection/' . $id, $data);
52
+        $post = $this->_post('api/collections/collection/'.$id, $data);
53 53
         return $post;
54 54
     }
55 55
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function delete(int $id): bool
63 63
     {
64
-        return $this->_delete('api/collections/collection/' . $id);
64
+        return $this->_delete('api/collections/collection/'.$id);
65 65
     }
66 66
 
67 67
     /**
Please login to merge, or discard this patch.
src/includes/functions.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     if (!$date) return null;
10 10
 
11 11
     try {
12
-        $date = new \DateTime($date . ' CET');
12
+        $date = new \DateTime($date.' CET');
13 13
         return $date;
14 14
     } catch (Exception $e) {
15 15
         error_log($e);
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,9 @@
 block discarded – undo
6 6
  */
7 7
 function lifeboat_date_formatter(string $date)
8 8
 {
9
-    if (!$date) return null;
9
+    if (!$date) {
10
+        return null;
11
+    }
10 12
 
11 13
     try {
12 14
         $date = new \DateTime($date . ' CET');
Please login to merge, or discard this patch.
src/factory/ObjectFactory.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,9 @@  discard block
 block discarded – undo
21 21
     public static function create(Connector $connector, string $model, array $data = []): Model
22 22
     {
23 23
         $model = strtolower($model);
24
-        if (!array_key_exists($model, ClassMap::MODELS)) return new LifeboatModel($connector, $data);
24
+        if (!array_key_exists($model, ClassMap::MODELS)) {
25
+            return new LifeboatModel($connector, $data);
26
+        }
25 27
 
26 28
         $cls = ClassMap::MODELS[$model];
27 29
         return new $cls($connector, $data);
@@ -35,7 +37,9 @@  discard block
 block discarded – undo
35 37
     public static function make(Connector $connector, array $data): Model
36 38
     {
37 39
         $model = $data['model'] ?? '';
38
-        if (!$model) return new LifeboatModel($connector, $data);
40
+        if (!$model) {
41
+            return new LifeboatModel($connector, $data);
42
+        }
39 43
         return self::create($connector, $model, $data);
40 44
     }
41 45
 }
Please login to merge, or discard this patch.
src/models/Model.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,19 +34,19 @@  discard block
 block discarded – undo
34 34
                     // Model or Object
35 35
                     if (!array_key_exists('field_name', $value)) {
36 36
                         $this->$field = ObjectFactory::make($client, $value);
37
-                    } else {
37
+                    }else {
38 38
                         // Has One Relation - Deprecated
39 39
                         $name = $value['field_name'];
40 40
                         $this->$name    = $value['field_value'];
41 41
                         $this->$field   = ObjectFactory::make($client, $value['object_data']);
42 42
                     }
43
-                } else {
43
+                }else {
44 44
                     // HasMany / ManyMany Relation
45 45
                     $list = [];
46 46
                     foreach ($value as $item) {
47 47
                         if (ArrayLib::is_associative($item)) {
48 48
                             $list[] = ObjectFactory::make($client, $item);
49
-                        } else {
49
+                        }else {
50 50
                             $list[] = $item;
51 51
                         }
52 52
                     }
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
         if ($this->exists()) {
84 84
             if (!method_exists($service, 'update')) return $this;
85 85
             return $service->update($this->ID, $this->toArray());
86
-        } else {
86
+        }else {
87 87
             if (!method_exists($service, 'create')) return $this;
88 88
             return $service->create($this->toArray());
89 89
         }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,10 +81,14 @@
 block discarded – undo
81 81
         $service = $this->getService();
82 82
 
83 83
         if ($this->exists()) {
84
-            if (!method_exists($service, 'update')) return $this;
84
+            if (!method_exists($service, 'update')) {
85
+                return $this;
86
+            }
85 87
             return $service->update($this->ID, $this->toArray());
86 88
         } else {
87
-            if (!method_exists($service, 'create')) return $this;
89
+            if (!method_exists($service, 'create')) {
90
+                return $this;
91
+            }
88 92
             return $service->create($this->toArray());
89 93
         }
90 94
     }
Please login to merge, or discard this patch.