Completed
Push — master ( 9fe9e2...c60305 )
by Vincenzo
04:53 queued 02:24
created
api/Lib/DsManager/Helpers/RandomFiller.php 2 patches
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 namespace App\Lib\DsManager\Helpers;
5 5
 
6 6
 
7
-use App\Lib\DsManager\Models\Coach;
8
-use App\Lib\DsManager\Models\Player;
9
-use App\Lib\DsManager\Models\Team;
7
+use App\Lib\DsManager\Models\Coach;
8
+use App\Lib\DsManager\Models\Player;
9
+use App\Lib\DsManager\Models\Team;
10 10
 use App\Lib\Helpers\Config;
11 11
 
12 12
 /**
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 
48 48
     /**
49
-     * @param null $forcedRole
49
+     * @param string|null $forcedRole
50 50
      * @param null $locale
51 51
      * @return Player
52 52
      */
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     }
150 150
 
151 151
     /**
152
-     * @param $locale
152
+     * @param string $locale
153 153
      * @return mixed
154 154
      */
155 155
     private function nationalityFromLocale($locale)
Please login to merge, or discard this patch.
api/Lib/DsManager/Models/MatchResult.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * MatchResult constructor.
34
-     * @param $goalHome
35
-     * @param $goalAway
34
+     * @param integer $goalHome
35
+     * @param integer $goalAway
36 36
      * @param Team $home
37 37
      * @param Team $away
38 38
      */
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Lib\DsManager\Models;
4 4
 
5
-use App\Lib\DsManager\Helpers\Randomizer;
6
-use App\Lib\DsManager\Models\Common\DsManagerModel;
5
+use App\Lib\DsManager\Helpers\Randomizer;
6
+use App\Lib\DsManager\Models\Common\DsManagerModel;
7 7
 use App\Lib\Helpers\Config;
8 8
 
9 9
 
Please login to merge, or discard this patch.
api/Lib/DsManager/Models/Match.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Lib\DsManager\Models;
4 4
 
5
-use App\Lib\DsManager\Helpers\Randomizer;
5
+use App\Lib\DsManager\Helpers\Randomizer;
6 6
 use App\Lib\Helpers\Config;
7 7
 
8 8
 
Please login to merge, or discard this patch.
api/index.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 require_once("vendor/autoload.php");
5 5
 
6 6
 
7
-use App\Lib\DsManager\Helpers\MatchSimulator;
8
-use App\Lib\DsManager\Models\Orm\League;
9
-use App\Lib\DsManager\Models\Orm\Match;
7
+use App\Lib\DsManager\Helpers\MatchSimulator;
8
+use App\Lib\DsManager\Models\Orm\League;
9
+use App\Lib\DsManager\Models\Orm\Match;
10 10
 use App\Lib\DsManager\Models\Orm\MatchResult;
11 11
 use \App\Lib\Helpers\Responder;
12 12
 use \App\Lib\DsManager\Models\Orm\Player;
Please login to merge, or discard this patch.