Passed
Push — main ( 47f0cd...b1d2fe )
by Dylan
01:56
created
src/includes/functions.php 1 patch
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.
src/resource/ListResource.php 1 patch
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.
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 1 patch
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.
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/App.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     public function __construct(string $app_id, string $app_secret, $auth_domain = self::AUTH_DOMAIN)
23 23
     {
24 24
         if (!$app_id || !$app_secret) {
25
-            throw new InvalidArgumentException(static::class . "expects an app_id and app_secret");
25
+            throw new InvalidArgumentException(static::class."expects an app_id and app_secret");
26 26
         }
27 27
 
28 28
         $this->setAppID($app_id);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
         if (!$response->isValid() || !$json || !array_key_exists('access_token', $json)) {
130 130
             return $json['access_token'];
131
-        } else {
131
+        }else {
132 132
             return '';
133 133
         }
134 134
     }
Please login to merge, or discard this patch.