@@ -46,7 +46,7 @@ discard block |
||
| 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 | */ |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
| 151 | - * @param $locale |
|
| 151 | + * @param string $locale |
|
| 152 | 152 | * @return mixed |
| 153 | 153 | */ |
| 154 | 154 | private function nationalityFromLocale($locale) |
@@ -12,10 +12,10 @@ |
||
| 12 | 12 | public function run() |
| 13 | 13 | {
|
| 14 | 14 | Capsule::schema()->dropIfExists('teams');
|
| 15 | - Capsule::schema()->create('teams', function ($table) {
|
|
| 15 | + Capsule::schema()->create('teams', function($table) {
|
|
| 16 | 16 | $table->increments('id');
|
| 17 | 17 | $table->string('name');
|
| 18 | - $table->string('nationality',2);
|
|
| 18 | + $table->string('nationality', 2);
|
|
| 19 | 19 | $table->timestamps(); |
| 20 | 20 | }); |
| 21 | 21 | } |
@@ -12,15 +12,15 @@ |
||
| 12 | 12 | public function run() |
| 13 | 13 | {
|
| 14 | 14 | Capsule::schema()->dropIfExists('coaches');
|
| 15 | - Capsule::schema()->create('coaches', function ($table) {
|
|
| 15 | + Capsule::schema()->create('coaches', function($table) {
|
|
| 16 | 16 | $table->increments('id');
|
| 17 | 17 | $table->string('name');
|
| 18 | 18 | $table->string('surname');
|
| 19 | 19 | $table->tinyInteger('age');
|
| 20 | - $table->string('nationality',2);
|
|
| 20 | + $table->string('nationality', 2);
|
|
| 21 | 21 | $table->float('skillAvg');
|
| 22 | 22 | $table->float('wageReq');
|
| 23 | - $table->string('favouriteModule',10);
|
|
| 23 | + $table->string('favouriteModule', 10);
|
|
| 24 | 24 | $table->integer('team_id')->nullable();
|
| 25 | 25 | $table->timestamps(); |
| 26 | 26 | }); |
@@ -12,16 +12,16 @@ |
||
| 12 | 12 | public function run() |
| 13 | 13 | {
|
| 14 | 14 | Capsule::schema()->dropIfExists('players');
|
| 15 | - Capsule::schema()->create('players', function ($table) {
|
|
| 15 | + Capsule::schema()->create('players', function($table) {
|
|
| 16 | 16 | $table->increments('id');
|
| 17 | 17 | $table->string('name');
|
| 18 | 18 | $table->string('surname');
|
| 19 | 19 | $table->tinyInteger('age');
|
| 20 | - $table->string('nationality',2);
|
|
| 20 | + $table->string('nationality', 2);
|
|
| 21 | 21 | $table->float('skillAvg');
|
| 22 | 22 | $table->float('wageReq');
|
| 23 | 23 | $table->float('val');
|
| 24 | - $table->string('role',2);
|
|
| 24 | + $table->string('role', 2);
|
|
| 25 | 25 | $table->integer('team_id')->nullable();
|
| 26 | 26 | $table->timestamps(); |
| 27 | 27 | }); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | $team = $rndF->getTeam(); |
| 66 | 66 | |
| 67 | 67 | //var_dump($team->toArray()); |
| 68 | - echo "\n" . $team->name . " avg:"; |
|
| 68 | + echo "\n".$team->name." avg:"; |
|
| 69 | 69 | echo $team->getAvgSkill(); |
| 70 | 70 | |
| 71 | 71 | echo "\n Adding player:"; |
@@ -98,8 +98,8 @@ discard block |
||
| 98 | 98 | for ($i = 1; $i <= 20; $i++) {
|
| 99 | 99 | echo "\n\n-------------"; |
| 100 | 100 | $team = $rndF->getTeam(); |
| 101 | - echo "\n team: " . $team->name; |
|
| 102 | - echo "\n nat: " . $team->nationality; |
|
| 101 | + echo "\n team: ".$team->name; |
|
| 102 | + echo "\n nat: ".$team->nationality; |
|
| 103 | 103 | echo "\n skill avg: "; |
| 104 | 104 | echo $team->getAvgSkill(); |
| 105 | 105 | echo "\n age avg: "; |
@@ -118,9 +118,9 @@ discard block |
||
| 118 | 118 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller("it_IT");
|
| 119 | 119 | $italian = $rndF->getTeam(); |
| 120 | 120 | |
| 121 | - echo "\n" . $italian->name . "(" . $italian->getAvgSkill() . ") - " . $spanish->name . "(" . $spanish->getAvgSkill() . ") ...... ";
|
|
| 121 | + echo "\n".$italian->name."(".$italian->getAvgSkill().") - ".$spanish->name."(".$spanish->getAvgSkill().") ...... ";
|
|
| 122 | 122 | $result = (new \App\Lib\DsManager\Models\Match($italian, $spanish))->simulate()->toArray(); |
| 123 | - echo $result['goalHome'] . " - " . $result['goalAway']; |
|
| 123 | + echo $result['goalHome']." - ".$result['goalAway']; |
|
| 124 | 124 | echo "\n\n"; |
| 125 | 125 | } |
| 126 | 126 | |
@@ -146,9 +146,9 @@ discard block |
||
| 146 | 146 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller($randomLocale); |
| 147 | 147 | $opponent = $rndF->getTeam(); |
| 148 | 148 | |
| 149 | - echo "\n" . $opponent->name . "(" . $opponent->getAvgSkill() . ") - " . $myTeam->name . "(" . $myTeam->getAvgSkill() . ") ...... ";
|
|
| 149 | + echo "\n".$opponent->name."(".$opponent->getAvgSkill().") - ".$myTeam->name."(".$myTeam->getAvgSkill().") ...... ";
|
|
| 150 | 150 | $result = (new \App\Lib\DsManager\Models\Match($opponent, $myTeam))->simulate()->toArray(); |
| 151 | - echo $result['goalHome'] . " - " . $result['goalAway']; |
|
| 151 | + echo $result['goalHome']." - ".$result['goalAway']; |
|
| 152 | 152 | $result = $result['info']; |
| 153 | 153 | if (!$result['isDraw']) {
|
| 154 | 154 | if ($result['winner']->name == $myTeam->name) {
|
@@ -178,10 +178,10 @@ discard block |
||
| 178 | 178 | $modules = array_keys($modules); |
| 179 | 179 | foreach ($modules as $mod) {
|
| 180 | 180 | $module = new \App\Lib\DsManager\Models\Module($mod); |
| 181 | - echo "\n------------\n\n" . $module; |
|
| 182 | - echo "\nD: " . $module->isDefensive(); |
|
| 183 | - echo "\nB: " . $module->isBalanced(); |
|
| 184 | - echo "\nO: " . $module->isOffensive(); |
|
| 181 | + echo "\n------------\n\n".$module; |
|
| 182 | + echo "\nD: ".$module->isDefensive(); |
|
| 183 | + echo "\nB: ".$module->isBalanced(); |
|
| 184 | + echo "\nO: ".$module->isOffensive(); |
|
| 185 | 185 | echo "\n"; |
| 186 | 186 | print_r($module->getRoleNeeded()); |
| 187 | 187 | echo "\napplicable? "; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | $this->assertNotEmpty($module["roles"]); |
| 43 | 43 | foreach ($module["roles"] as $index => $playNum) {
|
| 44 | 44 | if ($playNum != 0) |
| 45 | - echo $playNum . " " . $roles[$rolesKeys[$index]]["description"] . " "; |
|
| 45 | + echo $playNum." ".$roles[$rolesKeys[$index]]["description"]." "; |
|
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | 48 | } |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | echo "\n"; |
| 59 | 59 | |
| 60 | 60 | for ($i = 1; $i <= 100; $i++) {
|
| 61 | - echo $i . " . "; |
|
| 61 | + echo $i." . "; |
|
| 62 | 62 | if (\App\Lib\DsManager\Helpers\Randomizer::boolOnPercentage(20)) {
|
| 63 | 63 | echo "yes"; |
| 64 | 64 | $yes++; |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function testIlluminateConnection() |
| 14 | 14 | {
|
| 15 | - Illuminate\Database\Capsule\Manager::schema()->create('test', function ($table) {
|
|
| 15 | + Illuminate\Database\Capsule\Manager::schema()->create('test', function($table) {
|
|
| 16 | 16 | $table->increments('id');
|
| 17 | 17 | $table->string('email')->unique();
|
| 18 | 18 | $table->timestamps(); |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | use Illuminate\Database\Eloquent\Model as Eloquent; |
| 5 | 5 | |
| 6 | 6 | |
| 7 | -abstract class DsManagerOrm extends Eloquent{
|
|
| 7 | +abstract class DsManagerOrm extends Eloquent {
|
|
| 8 | 8 | |
| 9 | 9 | protected $hidden = [ |
| 10 | 10 | 'created_at', |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | * @param array $array |
| 26 | 26 | * @return mixed |
| 27 | 27 | */ |
| 28 | - public static function fromArray($array =[]) |
|
| 28 | + public static function fromArray($array = []) |
|
| 29 | 29 | {
|
| 30 | 30 | $class = get_called_class(); |
| 31 | 31 | $class = new $class(); |