Passed
Push — main ( 707c01...5693d5 )
by Dylan
04:06 queued 01:54
created
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/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/resource/ListResource.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -212,20 +212,20 @@
 block discarded – undo
212 212
         $t = $this->getItems(1);
213 213
         $c = $this->count();
214 214
 
215
-        return (function () use ($t, $c) {
215
+        return (function() use ($t, $c) {
216 216
             $i = 0;
217 217
             $x = 0;
218 218
 
219 219
             while ($i < $c) {
220 220
                 if ($x === 0) {
221 221
                     $x = $this->_page_length;
222
-                    $t = $this->getItems((int) floor($i / $this->_page_length) + 1);
222
+                    $t = $this->getItems((int) floor($i / $this->_page_length)+1);
223 223
                 }
224 224
 
225
-                yield $i => $t[$this->_page_length - $x];
225
+                yield $i => $t[$this->_page_length-$x];
226 226
 
227 227
                 $x -= 1;
228
-                $i ++;
228
+                $i++;
229 229
             }
230 230
         })();
231 231
     }
Please login to merge, or discard this patch.
Braces   +18 added lines, -6 removed lines patch added patch discarded remove patch
@@ -129,16 +129,22 @@  discard block
 block discarded – undo
129 129
             $response   = $this->getClient()->curl_api($this->getURL(), 'GET', $data);
130 130
             $data       = ($response->isValid() && $response->isJSON()) ? $response->getJSON() : [];
131 131
 
132
-            if (empty($data)) throw new ApiException($response->getError());
132
+            if (empty($data)) {
133
+                throw new ApiException($response->getError());
134
+            }
133 135
 
134 136
             $this->_max_items = (int) $data['available_items'];
135 137
 
136
-            if (empty($data['items'])) return $this->_items[$page] = [];
138
+            if (empty($data['items'])) {
139
+                return $this->_items[$page] = [];
140
+            }
137 141
 
138 142
 
139 143
             foreach ($data['items'] as $item) {
140 144
                 $obj = ObjectFactory::make($this->getClient(), $item);
141
-                if (!$obj) continue;
145
+                if (!$obj) {
146
+                    continue;
147
+                }
142 148
 
143 149
                 $this->_items[$page][] = $obj;
144 150
             }
@@ -153,7 +159,9 @@  discard block
 block discarded – undo
153 159
      */
154 160
     public function offsetGet($offset): ?ObjectResource
155 161
     {
156
-        foreach ($this as $i => $obj) if ($i === $offset) return $obj;
162
+        foreach ($this as $i => $obj) {
163
+            if ($i === $offset) return $obj;
164
+        }
157 165
         return null;
158 166
     }
159 167
 
@@ -184,7 +192,9 @@  discard block
 block discarded – undo
184 192
      */
185 193
     public function offsetExists($offset): bool
186 194
     {
187
-        foreach ($this as $i => $obj) if ($offset === $i) return true;
195
+        foreach ($this as $i => $obj) {
196
+            if ($offset === $i) return true;
197
+        }
188 198
         return false;
189 199
     }
190 200
 
@@ -240,6 +250,8 @@  discard block
 block discarded – undo
240 250
      */
241 251
     public function first(): ?Model
242 252
     {
243
-        foreach ($this as $obj) return $obj;
253
+        foreach ($this as $obj) {
254
+            return $obj;
255
+        }
244 256
     }
245 257
 }
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
     public function __construct(string $_api_key, string $_api_secret, $_auth_domain = self::AUTH_DOMAIN)
22 22
     {
23 23
         if (!$_api_key) {
24
-            throw new InvalidArgumentException(static::class . ' parameter 1 should be your api key');
24
+            throw new InvalidArgumentException(static::class.' parameter 1 should be your api key');
25 25
         }
26 26
 
27 27
         if (!$_api_secret) {
28
-            throw new InvalidArgumentException(static::class . ' parameter 2 should be your api secret');
28
+            throw new InvalidArgumentException(static::class.' parameter 2 should be your api secret');
29 29
         }
30 30
 
31 31
         $this->_api_key = $_api_key;
Please login to merge, or discard this patch.
src/models/Model.php 2 patches
Spacing   +5 added lines, -5 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 ($model === static::class) return new $service($this->getClient());
84 84
         }
85 85
 
86
-        throw new ErrorException("Could not determine which service to use for " . static::class);
86
+        throw new ErrorException("Could not determine which service to use for ".static::class);
87 87
     }
88 88
 
89 89
     /**
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         if ($this->exists()) {
98 98
             if (!method_exists($service, 'update')) return $this;
99 99
             return $service->update($this->ID, $this->toArray());
100
-        } else {
100
+        }else {
101 101
             if (!method_exists($service, 'create')) return $this;
102 102
             return $service->create($this->toArray());
103 103
         }
Please login to merge, or discard this patch.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,9 @@  discard block
 block discarded – undo
80 80
     public function getService(): ApiService
81 81
     {
82 82
         foreach (ClassMap::SERVICE_MODEL as $service => $model) {
83
-            if ($model === static::class) return new $service($this->getClient());
83
+            if ($model === static::class) {
84
+                return new $service($this->getClient());
85
+            }
84 86
         }
85 87
 
86 88
         throw new ErrorException("Could not determine which service to use for " . static::class);
@@ -95,10 +97,14 @@  discard block
 block discarded – undo
95 97
         $service = $this->getService();
96 98
 
97 99
         if ($this->exists()) {
98
-            if (!method_exists($service, 'update')) return $this;
100
+            if (!method_exists($service, 'update')) {
101
+                return $this;
102
+            }
99 103
             return $service->update($this->ID, $this->toArray());
100 104
         } else {
101
-            if (!method_exists($service, 'create')) return $this;
105
+            if (!method_exists($service, 'create')) {
106
+                return $this;
107
+            }
102 108
             return $service->create($this->toArray());
103 109
         }
104 110
     }
Please login to merge, or discard this patch.
tests/AppTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,10 +54,10 @@
 block discarded – undo
54 54
     {
55 55
         $app    = new App('id', 'secret', 'http://test.domain');
56 56
         $url    = $app->getAuthURL('process.php', 'error.php', 'challenge');
57
-        $expect = 'http://test.domain/oauth/code?app_id=id&process_url=' .
58
-            urlencode('process.php') .
59
-            '&error_url=' . urlencode('error.php') .
60
-            '&challenge=' . Utils::pack('challenge');
57
+        $expect = 'http://test.domain/oauth/code?app_id=id&process_url='.
58
+            urlencode('process.php').
59
+            '&error_url='.urlencode('error.php').
60
+            '&challenge='.Utils::pack('challenge');
61 61
 
62 62
         $this->assertEquals($expect, $url);
63 63
     }
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
         return null;
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): ?DateTime
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.
tests/factory/ObjectFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function testFactory()
21 21
     {
22
-        $mock_data  = ['ID' => 0];
22
+        $mock_data = ['ID' => 0];
23 23
 
24 24
         foreach (ClassMap::MODELS as $name => $class) {
25 25
             $this->assertInstanceOf($class, ObjectFactory::create($this->getMockClient(), $name, $mock_data));
Please login to merge, or discard this patch.