Completed
Push — staging ( e89f4d...5adefb )
by Matthew
02:00
created
src/Controller/Endpoint/Leaderboards/LeaderboardEndpointController.php 3 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     /**
29 29
      * Construct
30 30
      *
31
-     * @param League\Fractal\Manager $fractal
31
+     * @param Manager $fractal
32 32
      */
33 33
     public function __construct(
34 34
         Manager                $fractal,
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * Get Player Leaderboard
50 50
      *
51
-     * @return \League\Fractal\Manager
51
+     * @return ResponseInterface
52 52
      */
53 53
     public function players()
54 54
     {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     /**
138 138
      * Get Outfit Leaderboard
139 139
      *
140
-     * @return \League\Fractal\Manager
140
+     * @return ResponseInterface
141 141
      */
142 142
     public function outfits()
143 143
     {
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
     /**
209 209
      * Get Weapon Leaderboard
210 210
      *
211
-     * @return \League\Fractal\Manager
211
+     * @return ResponseInterface
212 212
      */
213 213
     public function weapons()
214 214
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,12 +11,9 @@
 block discarded – undo
11 11
 use Ps2alerts\Api\Repository\Metrics\OutfitTotalRepository;
12 12
 use Ps2alerts\Api\Repository\Metrics\PlayerTotalRepository;
13 13
 use Ps2alerts\Api\Repository\Metrics\WeaponTotalRepository;
14
-use Ps2alerts\Api\Transformer\Leaderboards\LeaderboardUpdatedTransformer;
15 14
 use Ps2alerts\Api\Transformer\Leaderboards\OutfitLeaderboardTransformer;
16 15
 use Ps2alerts\Api\Transformer\Leaderboards\PlayerLeaderboardTransformer;
17 16
 use Ps2alerts\Api\Transformer\Leaderboards\WeaponLeaderboardTransformer;
18
-use Psr\Http\Message\ResponseInterface;
19
-use Psr\Http\Message\ServerRequestInterface;
20 17
 
21 18
 class LeaderboardEndpointController extends AbstractEndpointController
22 19
 {
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
             }
85 85
         }
86 86
 
87
-        if (! isset($field)) {
87
+        if (!isset($field)) {
88 88
             return $this->errorWrongArgs('Field wasn\'t provided and is required.');
89 89
         }
90 90
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
         // Gets outfit details
115 115
         for ($i = 0; $i < $count; $i++) {
116
-            if (! empty($players[$i]['playerOutfit'])) {
116
+            if (!empty($players[$i]['playerOutfit'])) {
117 117
                 // Gets outfit details
118 118
                 try {
119 119
                     $outfit = $this->dataEndpoint->getOutfit($players[$i]['playerOutfit']);
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
             }
175 175
         }
176 176
 
177
-        if (! isset($field)) {
177
+        if (!isset($field)) {
178 178
             return $this->errorWrongArgs('Field wasn\'t provided and is required.');
179 179
         }
180 180
 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
             }
235 235
         }
236 236
 
237
-        if (! isset($field)) {
237
+        if (!isset($field)) {
238 238
             return $this->errorWrongArgs('Field wasn\'t provided and is required.');
239 239
         }
240 240
 
@@ -276,19 +276,19 @@  discard block
 block discarded – undo
276 276
     public function validateRequestVars()
277 277
     {
278 278
         try {
279
-            if (! empty($_GET['field'])) {
279
+            if (!empty($_GET['field'])) {
280 280
                 $this->parseField($_GET['field']);
281 281
             }
282 282
 
283
-            if (! empty($_GET['server'])) {
283
+            if (!empty($_GET['server'])) {
284 284
                 $this->parseServer($_GET['server']);
285 285
             }
286 286
 
287
-            if (! empty($_GET['limit'])) {
287
+            if (!empty($_GET['limit'])) {
288 288
                 $this->parseOffset($_GET['limit']);
289 289
             }
290 290
 
291
-            if (! empty($_GET['offset'])) {
291
+            if (!empty($_GET['offset'])) {
292 292
                 $this->parseOffset($_GET['offset']);
293 293
             }
294 294
         } catch (InvalidArgumentException $e) {
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
             'captures'
315 315
         ];
316 316
 
317
-        if (! empty($field) && in_array($field, $validFields)) {
317
+        if (!empty($field) && in_array($field, $validFields)) {
318 318
             return $field;
319 319
         }
320 320
 
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
             unset($validServers[$key]);
336 336
         }
337 337
 
338
-        if (! empty($server) && in_array($server, $validServers)) {
338
+        if (!empty($server) && in_array($server, $validServers)) {
339 339
             return $server;
340 340
         }
341 341
 
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
      */
350 350
     public function parseLimit($limit)
351 351
     {
352
-        if (! isset($limit) && ! is_numeric($limit)) {
352
+        if (!isset($limit) && !is_numeric($limit)) {
353 353
             throw new InvalidArgumentException("Limit needs to be in numerical format.");
354 354
         }
355 355
 
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
      */
362 362
     public function parseOffset($offset)
363 363
     {
364
-        if (! isset($offset) && ! is_numeric($offset)) {
364
+        if (!isset($offset) && !is_numeric($offset)) {
365 365
             throw new InvalidArgumentException("Offset needs to be in numerical format.");
366 366
         }
367 367
 
Please login to merge, or discard this patch.