Completed
Push — master ( a7df31...7da885 )
by Stephen
04:04 queued 01:27
created
src/Client/StarCitizensClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 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
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function getResult($params = [])
46 46
     {
47
-        $request = new Request("GET", '?'.http_build_query($params));
47
+        $request = new Request("GET", '?' . http_build_query($params));
48 48
         return $this->client->send($request);
49 49
     }
50 50
 }
51 51
\ No newline at end of file
Please login to merge, or discard this patch.
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/Posts.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@
 block discarded – undo
25 25
 
26 26
     public function offsetSet($offset, $value)
27 27
     {
28
-        if ($value instanceof Post)
29
-            parent::offsetSet($offset, $value);
28
+        if ($value instanceof Post) {
29
+                    parent::offsetSet($offset, $value);
30
+        }
30 31
     }
31 32
 }
32 33
\ No newline at end of file
Please login to merge, or discard this patch.
src/Models/Store.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,8 +30,9 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function offsetExists($offset)
32 32
     {
33
-        if (array_key_exists($offset, $this->items))
34
-            return true;
33
+        if (array_key_exists($offset, $this->items)) {
34
+                    return true;
35
+        }
35 36
 
36 37
         return false;
37 38
     }
@@ -43,8 +44,9 @@  discard block
 block discarded – undo
43 44
      */
44 45
     public function offsetGet($offset)
45 46
     {
46
-        if ($this->offsetExists($offset))
47
-            return $this->items[$offset];
47
+        if ($this->offsetExists($offset)) {
48
+                    return $this->items[$offset];
49
+        }
48 50
 
49 51
         return false;
50 52
     }
@@ -63,8 +65,9 @@  discard block
 block discarded – undo
63 65
      */
64 66
     public function offsetUnset($offset)
65 67
     {
66
-        if ($this->offsetExists($offset) && isset($this->items[$offset]))
67
-            unset ($this->items[$offset]);
68
+        if ($this->offsetExists($offset) && isset($this->items[$offset])) {
69
+                    unset ($this->items[$offset]);
70
+        }
68 71
     }
69 72
 
70 73
     /**
Please login to merge, or discard this patch.
src/Models/Threads.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@
 block discarded – undo
25 25
 
26 26
     public function offsetSet($offset, $value)
27 27
     {
28
-        if ($value instanceof Thread)
29
-            parent::offsetSet($offset, $value);
28
+        if ($value instanceof Thread) {
29
+                    parent::offsetSet($offset, $value);
30
+        }
30 31
     }
31 32
 }
32 33
\ No newline at end of file
Please login to merge, or discard this patch.
src/Base/StarCitizenAbstract.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     protected static function find($id, $action = Organisations::ORG, $cache = false, $raw = false)
40 40
     {
41
-        $cache = ($cache === true)? "cache" : "live";
41
+        $cache = ($cache === true) ? "cache" : "live";
42 42
 
43 43
         $params = [
44 44
             'api_source' => $cache,
Please login to merge, or discard this patch.
Braces   +8 added lines, -6 removed lines patch added patch discarded remove patch
@@ -46,11 +46,12 @@  discard block
 block discarded – undo
46 46
         ];
47 47
 
48 48
         $response = json_decode(self::$client->getResult($params)->getBody()->getContents(), true);
49
-        if ($response['request_stats']['query_status'] == "success")
50
-            if ($raw === true)
49
+        if ($response['request_stats']['query_status'] == "success") {
50
+                    if ($raw === true)
51 51
                 return $response;
52
-            else
53
-                return self::fillModel($profileType, $response['data']);
52
+        } else {
53
+                            return self::fillModel($profileType, $response['data']);
54
+            }
54 55
 
55 56
         return false;
56 57
     }
@@ -60,8 +61,9 @@  discard block
 block discarded – undo
60 61
      */
61 62
     private static function setupClient()
62 63
     {
63
-        if (static::$client === false)
64
-            static::$client = new StarCitizensClient();
64
+        if (static::$client === false) {
65
+                    static::$client = new StarCitizensClient();
66
+        }
65 67
     }
66 68
 
67 69
     /**
Please login to merge, or discard this patch.
src/Models/Profile.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -154,8 +154,9 @@  discard block
 block discarded – undo
154 154
      */
155 155
     protected function threads()
156 156
     {
157
-        if ($this->threads === null)
158
-            $this->threads = Accounts::findThreads($this->handle);
157
+        if ($this->threads === null) {
158
+                    $this->threads = Accounts::findThreads($this->handle);
159
+        }
159 160
 
160 161
         return $this->threads;
161 162
     }
@@ -165,8 +166,9 @@  discard block
 block discarded – undo
165 166
      */
166 167
     protected function posts()
167 168
     {
168
-        if ($this->posts === null)
169
-            $this->posts = Accounts::findPosts($this->handle);
169
+        if ($this->posts === null) {
170
+                    $this->posts = Accounts::findPosts($this->handle);
171
+        }
170 172
 
171 173
         return $this->posts;
172 174
     }
@@ -178,8 +180,9 @@  discard block
 block discarded – undo
178 180
      */
179 181
     public function with(...$types) {
180 182
         foreach ($types as $type) {
181
-            if (method_exists($this, strtolower($type)))
182
-                call_user_func([$this, $type]);
183
+            if (method_exists($this, strtolower($type))) {
184
+                            call_user_func([$this, $type]);
185
+            }
183 186
         }
184 187
 
185 188
         return $this;
Please login to merge, or discard this patch.