Completed
Pull Request — master (#22)
by Matthew
06:23 queued 04:03
created
src/Controller/Endpoint/AbstractEndpointController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
     /**
128 128
      * Checks formatting of dates input and then adds them to query
129 129
      *
130
-     * @param mixed         $dates
130
+     * @param string         $dates
131 131
      * @param AbstractQuery $query
132 132
      * @param boolean       $raw   Determines if query is being used in raw mode
133 133
      *
Please login to merge, or discard this patch.
src/Controller/Endpoint/Alerts/AlertCombatEndpointController.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -250,6 +250,9 @@  discard block
 block discarded – undo
250 250
         return $this->respondWithData($results);
251 251
     }
252 252
 
253
+    /**
254
+     * @param integer $classID
255
+     */
253 256
     private function findClassGrouping($classID)
254 257
     {
255 258
         $classGroups = $this->getConfig()['classesGroups'];
@@ -265,6 +268,9 @@  discard block
 block discarded – undo
265 268
         return false;
266 269
     }
267 270
 
271
+    /**
272
+     * @param integer $classID
273
+     */
268 274
     private function findClassFaction($classID)
269 275
     {
270 276
         $classesFactions = $this->getConfig()['classesFactions'];
Please login to merge, or discard this patch.
Controller/Endpoint/Leaderboards/LeaderboardOutfitEndpointController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
     /**
16 16
      * Construct
17 17
      *
18
-     * @param League\Fractal\Manager $fractal
19 18
      */
20 19
     public function __construct(
21 20
         OutfitTotalRepository  $repository
Please login to merge, or discard this patch.
Controller/Endpoint/Leaderboards/LeaderboardPlayerEndpointController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * Get Player Leaderboard
34 34
      *
35
-     * @return \League\Fractal\Manager
35
+     * @return \Psr\Http\Message\ResponseInterface
36 36
      */
37 37
     public function players()
38 38
     {
Please login to merge, or discard this patch.