Passed
Push — main ( 0b6967...cc8184 )
by Dylan
02:05
created
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.