Completed
Push — master ( c13ec5...2a4360 )
by Stephen
05:47 queued 03:28
created
src/Models/Thread.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public $thread_id;
13 13
     public $thread_replies;
14 14
     public $thread_views;
15
-    public $original_poster=[];
15
+    public $original_poster = [];
16 16
     public $original_post = [];
17 17
     public $recent_poster = [];
18 18
     public $recent_post;
Please login to merge, or discard this patch.
src/Models/Organisation.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,9 @@
 block discarded – undo
63 63
     {
64 64
         if ($this->members === null) {
65 65
             $members = Organisations::findMembers($this->sid);
66
-            if ($members instanceof Store)
67
-                $this->members = $members;
66
+            if ($members instanceof Store) {
67
+                            $this->members = $members;
68
+            }
68 69
         }
69 70
 
70 71
         return $this->members;
Please login to merge, or discard this patch.
src/Models/Store.php 2 patches
Braces   +14 added lines, -10 removed lines patch added patch discarded remove patch
@@ -59,8 +59,9 @@  discard block
 block discarded – undo
59 59
      */
60 60
     public function offsetExists($offset)
61 61
     {
62
-        if (array_key_exists($offset, $this->items))
63
-            return true;
62
+        if (array_key_exists($offset, $this->items)) {
63
+                    return true;
64
+        }
64 65
 
65 66
         return false;
66 67
     }
@@ -72,8 +73,9 @@  discard block
 block discarded – undo
72 73
      */
73 74
     public function offsetGet($offset)
74 75
     {
75
-        if ($this->offsetExists($offset))
76
-            return $this->items[$offset];
76
+        if ($this->offsetExists($offset)) {
77
+                    return $this->items[$offset];
78
+        }
77 79
 
78 80
         return false;
79 81
     }
@@ -84,11 +86,12 @@  discard block
 block discarded – undo
84 86
      */
85 87
     public function offsetSet($offset, $value)
86 88
     {
87
-        if ($value instanceof $this->className)
88
-            if ($offset == null)
89
+        if ($value instanceof $this->className) {
90
+                    if ($offset == null)
89 91
                 $this->items[] = $value;
90
-            else
91
-                $this->items[$offset] = $value;
92
+        } else {
93
+                            $this->items[$offset] = $value;
94
+            }
92 95
     }
93 96
 
94 97
     /**
@@ -96,8 +99,9 @@  discard block
 block discarded – undo
96 99
      */
97 100
     public function offsetUnset($offset)
98 101
     {
99
-        if ($this->offsetExists($offset) && isset($this->items[$offset]))
100
-            unset ($this->items[$offset]);
102
+        if ($this->offsetExists($offset) && isset($this->items[$offset])) {
103
+                    unset ($this->items[$offset]);
104
+        }
101 105
     }
102 106
 
103 107
     /**
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $data, $className, $dataRoot, $idName)
29 29
     {
30
-        $this->className = 'StarCitizen\Models' . $className;
30
+        $this->className = 'StarCitizen\Models'.$className;
31 31
         foreach ($data as $item) {
32 32
 
33 33
             // Check the data root and idName are good
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
             $id = ($idName == '' ? null : $objectData[$idName]);
36 36
 
37 37
             // create the appropriate class and add it to items
38
-            $storageObject = new \ReflectionClass('StarCitizen\Models' . $className);
38
+            $storageObject = new \ReflectionClass('StarCitizen\Models'.$className);
39 39
             $this->offsetSet($id, $storageObject->newInstance($objectData));
40 40
         }
41 41
     }
Please login to merge, or discard this patch.
src/Models/Profile.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,8 +76,9 @@  discard block
 block discarded – undo
76 76
     {
77 77
         if ($this->threads === null) {
78 78
             $threads = Accounts::findThreads($this->handle);
79
-            if ($threads instanceof Store)
80
-                $this->threads = $threads;
79
+            if ($threads instanceof Store) {
80
+                            $this->threads = $threads;
81
+            }
81 82
         }
82 83
 
83 84
         return $this->threads;
@@ -90,8 +91,9 @@  discard block
 block discarded – undo
90 91
     {
91 92
         if ($this->posts === null) {
92 93
             $posts = Accounts::findPosts($this->handle);
93
-            if ($posts instanceof Store)
94
-                $this->posts = $posts;
94
+            if ($posts instanceof Store) {
95
+                            $this->posts = $posts;
96
+            }
95 97
         }
96 98
 
97 99
         return $this->posts;
Please login to merge, or discard this patch.
src/Models/OrgMember.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,9 @@
 block discarded – undo
56 56
     {
57 57
         if ($this->profile === null) {
58 58
             $profile = Accounts::findProfile($this->handle);
59
-            if ($profile instanceof Profile)
60
-                $this->profile = $profile;
59
+            if ($profile instanceof Profile) {
60
+                            $this->profile = $profile;
61
+            }
61 62
         }
62 63
 
63 64
         return $this->profile;
Please login to merge, or discard this patch.
src/Models/Model.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,9 @@
 block discarded – undo
20 20
      */
21 21
     public function with(...$types) {
22 22
         foreach ($types as $type) {
23
-            if (method_exists($this, strtolower($type)))
24
-                call_user_func([$this, $type]);
23
+            if (method_exists($this, strtolower($type))) {
24
+                            call_user_func([$this, $type]);
25
+            }
25 26
         }
26 27
 
27 28
         return $this;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
             return call_user_func([$this, $name]);
39 39
         }
40 40
 
41
-        throw new \Exception('Property ' . $name . ' does not exist in this class');
41
+        throw new \Exception('Property '.$name.' does not exist in this class');
42 42
     }
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
src/Client/StarCitizensClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Base url
17 17
      */
18
-    const APIURL =  "http://sc-api.com";
18
+    const APIURL = "http://sc-api.com";
19 19
 
20 20
     /**
21 21
      * @var Client
Please login to merge, or discard this patch.
src/StarCitizens.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,11 +141,11 @@
 block discarded – undo
141 141
     private function fillModel($model, $fillData)
142 142
     {
143 143
         if (is_array($model)) {
144
-            list($className, $dataRoot, $idName) =$model;
144
+            list($className, $dataRoot, $idName) = $model;
145 145
             $object = new \ReflectionClass('StarCitizen\Models\Store');
146 146
             return $object->newInstance($fillData, $className, $dataRoot, $idName);
147 147
         } else {
148
-            $object = new \ReflectionClass('StarCitizen\Models' . $model);
148
+            $object = new \ReflectionClass('StarCitizen\Models'.$model);
149 149
             return $object->newInstance($fillData);
150 150
         }
151 151
     }
Please login to merge, or discard this patch.