@@ -9,31 +9,31 @@ |
||
| 9 | 9 | */ |
| 10 | 10 | class Coach extends DsManagerOrm |
| 11 | 11 | { |
| 12 | - /** |
|
| 13 | - * @var string |
|
| 14 | - */ |
|
| 15 | - protected $table = 'coaches'; |
|
| 12 | + /** |
|
| 13 | + * @var string |
|
| 14 | + */ |
|
| 15 | + protected $table = 'coaches'; |
|
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * @var array |
|
| 19 | - */ |
|
| 20 | - protected $fillable = [ |
|
| 21 | - 'name', |
|
| 22 | - 'surname', |
|
| 23 | - 'age', |
|
| 24 | - 'nationality', |
|
| 25 | - 'skillAvg', |
|
| 26 | - 'wageReq', |
|
| 27 | - 'favouriteModule', |
|
| 28 | - 'team_id' |
|
| 29 | - ]; |
|
| 17 | + /** |
|
| 18 | + * @var array |
|
| 19 | + */ |
|
| 20 | + protected $fillable = [ |
|
| 21 | + 'name', |
|
| 22 | + 'surname', |
|
| 23 | + 'age', |
|
| 24 | + 'nationality', |
|
| 25 | + 'skillAvg', |
|
| 26 | + 'wageReq', |
|
| 27 | + 'favouriteModule', |
|
| 28 | + 'team_id' |
|
| 29 | + ]; |
|
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
|
| 33 | - */ |
|
| 34 | - public function team() |
|
| 35 | - { |
|
| 36 | - return $this->belongsTo(Team::class); |
|
| 37 | - } |
|
| 31 | + /** |
|
| 32 | + * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
|
| 33 | + */ |
|
| 34 | + public function team() |
|
| 35 | + { |
|
| 36 | + return $this->belongsTo(Team::class); |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | 39 | } |
| 40 | 40 | \ No newline at end of file |
@@ -6,9 +6,9 @@ |
||
| 6 | 6 | |
| 7 | 7 | abstract class DsManagerOrm extends Eloquent{ |
| 8 | 8 | |
| 9 | - protected $hidden = [ |
|
| 10 | - 'created_at', |
|
| 11 | - 'updated_at' |
|
| 12 | - ]; |
|
| 9 | + protected $hidden = [ |
|
| 10 | + 'created_at', |
|
| 11 | + 'updated_at' |
|
| 12 | + ]; |
|
| 13 | 13 | |
| 14 | 14 | } |
| 15 | 15 | \ No newline at end of file |
@@ -10,149 +10,149 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | class Match |
| 12 | 12 | { |
| 13 | - /** |
|
| 14 | - * @var Team |
|
| 15 | - */ |
|
| 16 | - private $homeTeam; |
|
| 17 | - /** |
|
| 18 | - * @var Team |
|
| 19 | - */ |
|
| 20 | - private $awayTeam; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Match constructor. |
|
| 24 | - * @param Team $home |
|
| 25 | - * @param Team $away |
|
| 26 | - */ |
|
| 27 | - public function __construct(Team $home, Team $away) |
|
| 28 | - { |
|
| 29 | - $this->homeTeam = $home; |
|
| 30 | - $this->awayTeam = $away; |
|
| 31 | - } |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * @return MatchResult |
|
| 35 | - */ |
|
| 36 | - public function simulate() |
|
| 37 | - { |
|
| 38 | - $homePoints = $this->homeTeam->getAvgSkill(); |
|
| 39 | - $awayPoints = $this->awayTeam->getAvgSkill(); |
|
| 40 | - |
|
| 41 | - $homePoints += $this->malusModule( |
|
| 42 | - $this->homeTeam->coach->favouriteModule, |
|
| 43 | - $this->homeTeam->playersPerRoleArray() |
|
| 44 | - ); |
|
| 45 | - $awayPoints += $this->malusModule( |
|
| 46 | - $this->awayTeam->coach->favouriteModule, |
|
| 47 | - $this->awayTeam->playersPerRoleArray() |
|
| 48 | - ); |
|
| 49 | - |
|
| 50 | - $goalHome = 0; |
|
| 51 | - $goalAway = 0; |
|
| 52 | - |
|
| 53 | - if (Randomizer::boolOnPercentage(80)) { |
|
| 54 | - |
|
| 55 | - if (($homePoints - $awayPoints) < 0) { |
|
| 56 | - $goalAway = ($awayPoints - $homePoints) % 6; |
|
| 57 | - $goalHome += $this->chance(); |
|
| 58 | - $goalAway += $this->chance(); |
|
| 59 | - $goalHome += $this->bonusHome(); |
|
| 60 | - } else { |
|
| 61 | - $goalHome = ($homePoints - $awayPoints) % 6; |
|
| 62 | - $goalAway += $this->chance(); |
|
| 63 | - $goalHome += $this->bonusHome(); |
|
| 64 | - } |
|
| 65 | - |
|
| 66 | - } else { |
|
| 67 | - $goalHome += $this->chance(); |
|
| 68 | - $goalAway += $this->chance(); |
|
| 69 | - $goalHome += $this->bonusHome(); |
|
| 70 | - } |
|
| 71 | - |
|
| 72 | - $goalHome += $this->bonusAge($this->homeTeam); |
|
| 73 | - $goalAway += $this->bonusAge($this->awayTeam); |
|
| 74 | - |
|
| 75 | - |
|
| 76 | - //Bonus on Good GoalKeeper |
|
| 77 | - $goalies = $this->homeTeam->getBestPlayerForRole("GK"); |
|
| 78 | - $goalAway -= $this->bonusGoalkeeper($goalies); |
|
| 79 | - $goalies = $this->awayTeam->getBestPlayerForRole("GK"); |
|
| 80 | - $goalHome -= $this->bonusGoalkeeper($goalies); |
|
| 81 | - // |
|
| 82 | - |
|
| 83 | - $homeModule = new Module($this->homeTeam->coach->favouriteModule); |
|
| 84 | - $awayModule = new Module($this->awayTeam->coach->favouriteModule); |
|
| 85 | - |
|
| 86 | - if ($homeModule->isOffensive()) { |
|
| 87 | - $goalHome += Randomizer::boolOnPercentage(50) ? rand(1, 2) : 0; |
|
| 88 | - $goalAway += Randomizer::boolOnPercentage(20) ? 1 : 0; |
|
| 89 | - } |
|
| 90 | - if ($awayModule->isOffensive()) { |
|
| 91 | - $goalAway += Randomizer::boolOnPercentage(50) ? rand(1, 2) : 0; |
|
| 92 | - $goalHome += Randomizer::boolOnPercentage(20) ? 1 : 0; |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - if ($awayModule->isDefensive()) { |
|
| 96 | - $goalHome -= Randomizer::boolOnPercentage(50) ? 1 : 0; |
|
| 97 | - } |
|
| 98 | - if ($homeModule->isDefensive()) { |
|
| 99 | - $goalAway -= Randomizer::boolOnPercentage(50) ? 1 : 0; |
|
| 100 | - } |
|
| 101 | - |
|
| 102 | - $goalHome = $goalHome < 0 ? 0 : $goalHome; |
|
| 103 | - $goalAway = $goalAway < 0 ? 0 : $goalAway; |
|
| 104 | - return new MatchResult($goalHome, $goalAway, $this->homeTeam, $this->awayTeam); |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - private function bonusAge(Team $team) |
|
| 108 | - { |
|
| 109 | - if ($team->getAvgAge() > 29 || $team->getAvgAge() < 24) { |
|
| 110 | - return $this->chance(); |
|
| 111 | - } |
|
| 112 | - return 0; |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - /** |
|
| 116 | - * @param $goalkeeper |
|
| 117 | - * @return int |
|
| 118 | - */ |
|
| 119 | - private function bonusGoalKeeper($goalkeeper) |
|
| 120 | - { |
|
| 121 | - |
|
| 122 | - $skillGoalkeeper = empty($goalkeeper) ? 1 : $goalkeeper->skillAvg; |
|
| 123 | - return (Randomizer::boolOnPercentage($skillGoalkeeper) ? 1 : 0); |
|
| 124 | - |
|
| 125 | - } |
|
| 126 | - |
|
| 127 | - /** |
|
| 128 | - * @return int |
|
| 129 | - */ |
|
| 130 | - private function chance() |
|
| 131 | - { |
|
| 132 | - return rand(0, 3); |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - /** |
|
| 136 | - * @return int |
|
| 137 | - */ |
|
| 138 | - private function bonusHome() |
|
| 139 | - { |
|
| 140 | - return Randomizer::boolOnPercentage(66) ? 1 : 0; |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - /** |
|
| 144 | - * @param $moduleString |
|
| 145 | - * @param $playersRoleArray |
|
| 146 | - * @return int |
|
| 147 | - */ |
|
| 148 | - private function malusModule($moduleString, $playersRoleArray) |
|
| 149 | - { |
|
| 150 | - $module = new Module($moduleString); |
|
| 151 | - if ($module->isApplicableToArray($playersRoleArray)) { |
|
| 152 | - return rand(1, 10); |
|
| 153 | - } else { |
|
| 154 | - return (-1) * rand(1, 10); |
|
| 155 | - } |
|
| 156 | - } |
|
| 13 | + /** |
|
| 14 | + * @var Team |
|
| 15 | + */ |
|
| 16 | + private $homeTeam; |
|
| 17 | + /** |
|
| 18 | + * @var Team |
|
| 19 | + */ |
|
| 20 | + private $awayTeam; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Match constructor. |
|
| 24 | + * @param Team $home |
|
| 25 | + * @param Team $away |
|
| 26 | + */ |
|
| 27 | + public function __construct(Team $home, Team $away) |
|
| 28 | + { |
|
| 29 | + $this->homeTeam = $home; |
|
| 30 | + $this->awayTeam = $away; |
|
| 31 | + } |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * @return MatchResult |
|
| 35 | + */ |
|
| 36 | + public function simulate() |
|
| 37 | + { |
|
| 38 | + $homePoints = $this->homeTeam->getAvgSkill(); |
|
| 39 | + $awayPoints = $this->awayTeam->getAvgSkill(); |
|
| 40 | + |
|
| 41 | + $homePoints += $this->malusModule( |
|
| 42 | + $this->homeTeam->coach->favouriteModule, |
|
| 43 | + $this->homeTeam->playersPerRoleArray() |
|
| 44 | + ); |
|
| 45 | + $awayPoints += $this->malusModule( |
|
| 46 | + $this->awayTeam->coach->favouriteModule, |
|
| 47 | + $this->awayTeam->playersPerRoleArray() |
|
| 48 | + ); |
|
| 49 | + |
|
| 50 | + $goalHome = 0; |
|
| 51 | + $goalAway = 0; |
|
| 52 | + |
|
| 53 | + if (Randomizer::boolOnPercentage(80)) { |
|
| 54 | + |
|
| 55 | + if (($homePoints - $awayPoints) < 0) { |
|
| 56 | + $goalAway = ($awayPoints - $homePoints) % 6; |
|
| 57 | + $goalHome += $this->chance(); |
|
| 58 | + $goalAway += $this->chance(); |
|
| 59 | + $goalHome += $this->bonusHome(); |
|
| 60 | + } else { |
|
| 61 | + $goalHome = ($homePoints - $awayPoints) % 6; |
|
| 62 | + $goalAway += $this->chance(); |
|
| 63 | + $goalHome += $this->bonusHome(); |
|
| 64 | + } |
|
| 65 | + |
|
| 66 | + } else { |
|
| 67 | + $goalHome += $this->chance(); |
|
| 68 | + $goalAway += $this->chance(); |
|
| 69 | + $goalHome += $this->bonusHome(); |
|
| 70 | + } |
|
| 71 | + |
|
| 72 | + $goalHome += $this->bonusAge($this->homeTeam); |
|
| 73 | + $goalAway += $this->bonusAge($this->awayTeam); |
|
| 74 | + |
|
| 75 | + |
|
| 76 | + //Bonus on Good GoalKeeper |
|
| 77 | + $goalies = $this->homeTeam->getBestPlayerForRole("GK"); |
|
| 78 | + $goalAway -= $this->bonusGoalkeeper($goalies); |
|
| 79 | + $goalies = $this->awayTeam->getBestPlayerForRole("GK"); |
|
| 80 | + $goalHome -= $this->bonusGoalkeeper($goalies); |
|
| 81 | + // |
|
| 82 | + |
|
| 83 | + $homeModule = new Module($this->homeTeam->coach->favouriteModule); |
|
| 84 | + $awayModule = new Module($this->awayTeam->coach->favouriteModule); |
|
| 85 | + |
|
| 86 | + if ($homeModule->isOffensive()) { |
|
| 87 | + $goalHome += Randomizer::boolOnPercentage(50) ? rand(1, 2) : 0; |
|
| 88 | + $goalAway += Randomizer::boolOnPercentage(20) ? 1 : 0; |
|
| 89 | + } |
|
| 90 | + if ($awayModule->isOffensive()) { |
|
| 91 | + $goalAway += Randomizer::boolOnPercentage(50) ? rand(1, 2) : 0; |
|
| 92 | + $goalHome += Randomizer::boolOnPercentage(20) ? 1 : 0; |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + if ($awayModule->isDefensive()) { |
|
| 96 | + $goalHome -= Randomizer::boolOnPercentage(50) ? 1 : 0; |
|
| 97 | + } |
|
| 98 | + if ($homeModule->isDefensive()) { |
|
| 99 | + $goalAway -= Randomizer::boolOnPercentage(50) ? 1 : 0; |
|
| 100 | + } |
|
| 101 | + |
|
| 102 | + $goalHome = $goalHome < 0 ? 0 : $goalHome; |
|
| 103 | + $goalAway = $goalAway < 0 ? 0 : $goalAway; |
|
| 104 | + return new MatchResult($goalHome, $goalAway, $this->homeTeam, $this->awayTeam); |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + private function bonusAge(Team $team) |
|
| 108 | + { |
|
| 109 | + if ($team->getAvgAge() > 29 || $team->getAvgAge() < 24) { |
|
| 110 | + return $this->chance(); |
|
| 111 | + } |
|
| 112 | + return 0; |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + /** |
|
| 116 | + * @param $goalkeeper |
|
| 117 | + * @return int |
|
| 118 | + */ |
|
| 119 | + private function bonusGoalKeeper($goalkeeper) |
|
| 120 | + { |
|
| 121 | + |
|
| 122 | + $skillGoalkeeper = empty($goalkeeper) ? 1 : $goalkeeper->skillAvg; |
|
| 123 | + return (Randomizer::boolOnPercentage($skillGoalkeeper) ? 1 : 0); |
|
| 124 | + |
|
| 125 | + } |
|
| 126 | + |
|
| 127 | + /** |
|
| 128 | + * @return int |
|
| 129 | + */ |
|
| 130 | + private function chance() |
|
| 131 | + { |
|
| 132 | + return rand(0, 3); |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * @return int |
|
| 137 | + */ |
|
| 138 | + private function bonusHome() |
|
| 139 | + { |
|
| 140 | + return Randomizer::boolOnPercentage(66) ? 1 : 0; |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + /** |
|
| 144 | + * @param $moduleString |
|
| 145 | + * @param $playersRoleArray |
|
| 146 | + * @return int |
|
| 147 | + */ |
|
| 148 | + private function malusModule($moduleString, $playersRoleArray) |
|
| 149 | + { |
|
| 150 | + $module = new Module($moduleString); |
|
| 151 | + if ($module->isApplicableToArray($playersRoleArray)) { |
|
| 152 | + return rand(1, 10); |
|
| 153 | + } else { |
|
| 154 | + return (-1) * rand(1, 10); |
|
| 155 | + } |
|
| 156 | + } |
|
| 157 | 157 | |
| 158 | 158 | } |
| 159 | 159 | \ No newline at end of file |
@@ -10,101 +10,101 @@ |
||
| 10 | 10 | use \App\Lib\DsManager\Models\Orm\Coach; |
| 11 | 11 | |
| 12 | 12 | $configuration = [ |
| 13 | - 'settings' => [ |
|
| 14 | - 'displayErrorDetails' => true, |
|
| 15 | - ], |
|
| 13 | + 'settings' => [ |
|
| 14 | + 'displayErrorDetails' => true, |
|
| 15 | + ], |
|
| 16 | 16 | ]; |
| 17 | 17 | $c = new \Slim\Container($configuration); |
| 18 | 18 | $api = new \Slim\App($c); |
| 19 | 19 | |
| 20 | 20 | $api->get('/ping', function ($request, $response, $args) { |
| 21 | - $jsonResp = json_encode( |
|
| 22 | - [ |
|
| 23 | - "status" => "service up", |
|
| 24 | - "message" => "in a bottle", |
|
| 25 | - "config" => \App\Lib\Helpers\Config::get("config1.stuff") |
|
| 26 | - ] |
|
| 27 | - ); |
|
| 28 | - return \App\Lib\Helpers\Responder::getJsonResponse($jsonResp, $response); |
|
| 21 | + $jsonResp = json_encode( |
|
| 22 | + [ |
|
| 23 | + "status" => "service up", |
|
| 24 | + "message" => "in a bottle", |
|
| 25 | + "config" => \App\Lib\Helpers\Config::get("config1.stuff") |
|
| 26 | + ] |
|
| 27 | + ); |
|
| 28 | + return \App\Lib\Helpers\Responder::getJsonResponse($jsonResp, $response); |
|
| 29 | 29 | }); |
| 30 | 30 | |
| 31 | 31 | $api->get('/players', function ($request, $response, $args) { |
| 32 | - $json = json_encode(Player::all()); |
|
| 33 | - return \App\Lib\Helpers\Responder::getJsonResponse($json, $response); |
|
| 32 | + $json = json_encode(Player::all()); |
|
| 33 | + return \App\Lib\Helpers\Responder::getJsonResponse($json, $response); |
|
| 34 | 34 | }); |
| 35 | 35 | |
| 36 | 36 | |
| 37 | 37 | $api->get('/players/{id}', function ($request, $response, $args) { |
| 38 | - return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 39 | - Player::findOrFail($args['id']), |
|
| 40 | - $response |
|
| 41 | - ); |
|
| 38 | + return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 39 | + Player::findOrFail($args['id']), |
|
| 40 | + $response |
|
| 41 | + ); |
|
| 42 | 42 | }); |
| 43 | 43 | |
| 44 | 44 | $api->get('/coaches', function ($request, $response, $args) { |
| 45 | - return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 46 | - Coach::all(), |
|
| 47 | - $response |
|
| 48 | - ); |
|
| 45 | + return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 46 | + Coach::all(), |
|
| 47 | + $response |
|
| 48 | + ); |
|
| 49 | 49 | }); |
| 50 | 50 | |
| 51 | 51 | $api->get('/teams', function ($request, $response, $args) { |
| 52 | - return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 53 | - Team::all(), |
|
| 54 | - $response |
|
| 55 | - ); |
|
| 52 | + return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 53 | + Team::all(), |
|
| 54 | + $response |
|
| 55 | + ); |
|
| 56 | 56 | }); |
| 57 | 57 | |
| 58 | 58 | $api->get('/teams/{id}', function ($request, $response, $args) { |
| 59 | - return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 60 | - Team::with( |
|
| 61 | - 'roster', |
|
| 62 | - 'coach' |
|
| 63 | - )->where( |
|
| 64 | - [ |
|
| 65 | - 'id' => $args['id'] |
|
| 66 | - ] |
|
| 67 | - )->get(), |
|
| 68 | - $response |
|
| 69 | - ); |
|
| 59 | + return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 60 | + Team::with( |
|
| 61 | + 'roster', |
|
| 62 | + 'coach' |
|
| 63 | + )->where( |
|
| 64 | + [ |
|
| 65 | + 'id' => $args['id'] |
|
| 66 | + ] |
|
| 67 | + )->get(), |
|
| 68 | + $response |
|
| 69 | + ); |
|
| 70 | 70 | }); |
| 71 | 71 | |
| 72 | 72 | $api->get('/teams/{id}/players', function ($request, $response, $args) { |
| 73 | - return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 74 | - Team::with( |
|
| 75 | - 'roster' |
|
| 76 | - )->where( |
|
| 77 | - [ |
|
| 78 | - 'id' => $args['id'] |
|
| 79 | - ] |
|
| 80 | - )->get(), |
|
| 81 | - $response |
|
| 82 | - ); |
|
| 73 | + return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 74 | + Team::with( |
|
| 75 | + 'roster' |
|
| 76 | + )->where( |
|
| 77 | + [ |
|
| 78 | + 'id' => $args['id'] |
|
| 79 | + ] |
|
| 80 | + )->get(), |
|
| 81 | + $response |
|
| 82 | + ); |
|
| 83 | 83 | }); |
| 84 | 84 | |
| 85 | 85 | $api->get('/teams/{id}/players/{playerId}', function ($request, $response, $args) { |
| 86 | - return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 87 | - Player::where( |
|
| 88 | - [ |
|
| 89 | - 'id' => $args['playerId'], |
|
| 90 | - 'team_id' => $args['id'] |
|
| 91 | - ] |
|
| 92 | - )->get(), |
|
| 93 | - $response |
|
| 94 | - ); |
|
| 86 | + return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 87 | + Player::where( |
|
| 88 | + [ |
|
| 89 | + 'id' => $args['playerId'], |
|
| 90 | + 'team_id' => $args['id'] |
|
| 91 | + ] |
|
| 92 | + )->get(), |
|
| 93 | + $response |
|
| 94 | + ); |
|
| 95 | 95 | }); |
| 96 | 96 | |
| 97 | 97 | $api->get('/teams/{id}/coach', function ($request, $response, $args) { |
| 98 | - return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 99 | - Team::with( |
|
| 100 | - 'coach' |
|
| 101 | - )->where( |
|
| 102 | - [ |
|
| 103 | - 'id' => $args['id'] |
|
| 104 | - ] |
|
| 105 | - )->get(), |
|
| 106 | - $response |
|
| 107 | - ); |
|
| 98 | + return \App\Lib\Helpers\Responder::getJsonResponse( |
|
| 99 | + Team::with( |
|
| 100 | + 'coach' |
|
| 101 | + )->where( |
|
| 102 | + [ |
|
| 103 | + 'id' => $args['id'] |
|
| 104 | + ] |
|
| 105 | + )->get(), |
|
| 106 | + $response |
|
| 107 | + ); |
|
| 108 | 108 | }); |
| 109 | 109 | |
| 110 | 110 | $api->run(); |
| 111 | 111 | \ No newline at end of file |
@@ -4,26 +4,26 @@ |
||
| 4 | 4 | |
| 5 | 5 | class CreatePlayersTable |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Run the migrations. |
|
| 9 | - * |
|
| 10 | - * @return void |
|
| 11 | - */ |
|
| 12 | - public function run() |
|
| 13 | - { |
|
| 14 | - Capsule::schema()->dropIfExists('players'); |
|
| 15 | - Capsule::schema()->create('players', function ($table) { |
|
| 16 | - $table->increments('id'); |
|
| 17 | - $table->string('name'); |
|
| 18 | - $table->string('surname'); |
|
| 19 | - $table->tinyInteger('age'); |
|
| 20 | - $table->string('nationality',2); |
|
| 21 | - $table->float('skillAvg'); |
|
| 22 | - $table->float('wageReq'); |
|
| 23 | - $table->float('val'); |
|
| 24 | - $table->string('role',2); |
|
| 25 | - $table->integer('team_id')->nullable(); |
|
| 26 | - $table->timestamps(); |
|
| 27 | - }); |
|
| 28 | - } |
|
| 7 | + /** |
|
| 8 | + * Run the migrations. |
|
| 9 | + * |
|
| 10 | + * @return void |
|
| 11 | + */ |
|
| 12 | + public function run() |
|
| 13 | + { |
|
| 14 | + Capsule::schema()->dropIfExists('players'); |
|
| 15 | + Capsule::schema()->create('players', function ($table) { |
|
| 16 | + $table->increments('id'); |
|
| 17 | + $table->string('name'); |
|
| 18 | + $table->string('surname'); |
|
| 19 | + $table->tinyInteger('age'); |
|
| 20 | + $table->string('nationality',2); |
|
| 21 | + $table->float('skillAvg'); |
|
| 22 | + $table->float('wageReq'); |
|
| 23 | + $table->float('val'); |
|
| 24 | + $table->string('role',2); |
|
| 25 | + $table->integer('team_id')->nullable(); |
|
| 26 | + $table->timestamps(); |
|
| 27 | + }); |
|
| 28 | + } |
|
| 29 | 29 | } |
@@ -4,35 +4,35 @@ |
||
| 4 | 4 | |
| 5 | 5 | class CreateCoachesTable |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Run the migrations. |
|
| 9 | - * |
|
| 10 | - * @return void |
|
| 11 | - */ |
|
| 12 | - public function run() |
|
| 13 | - { |
|
| 14 | - Capsule::schema()->dropIfExists('coaches'); |
|
| 15 | - Capsule::schema()->create('coaches', function ($table) { |
|
| 16 | - $table->increments('id'); |
|
| 17 | - $table->string('name'); |
|
| 18 | - $table->string('surname'); |
|
| 19 | - $table->tinyInteger('age'); |
|
| 20 | - $table->string('nationality',2); |
|
| 21 | - $table->float('skillAvg'); |
|
| 22 | - $table->float('wageReq'); |
|
| 23 | - $table->string('favouriteModule',10); |
|
| 24 | - $table->integer('team_id')->nullable(); |
|
| 25 | - $table->timestamps(); |
|
| 26 | - }); |
|
| 27 | - } |
|
| 7 | + /** |
|
| 8 | + * Run the migrations. |
|
| 9 | + * |
|
| 10 | + * @return void |
|
| 11 | + */ |
|
| 12 | + public function run() |
|
| 13 | + { |
|
| 14 | + Capsule::schema()->dropIfExists('coaches'); |
|
| 15 | + Capsule::schema()->create('coaches', function ($table) { |
|
| 16 | + $table->increments('id'); |
|
| 17 | + $table->string('name'); |
|
| 18 | + $table->string('surname'); |
|
| 19 | + $table->tinyInteger('age'); |
|
| 20 | + $table->string('nationality',2); |
|
| 21 | + $table->float('skillAvg'); |
|
| 22 | + $table->float('wageReq'); |
|
| 23 | + $table->string('favouriteModule',10); |
|
| 24 | + $table->integer('team_id')->nullable(); |
|
| 25 | + $table->timestamps(); |
|
| 26 | + }); |
|
| 27 | + } |
|
| 28 | 28 | |
| 29 | - /** |
|
| 30 | - * Reverse the migrations. |
|
| 31 | - * |
|
| 32 | - * @return void |
|
| 33 | - */ |
|
| 34 | - public function down() |
|
| 35 | - { |
|
| 36 | - Schema::drop('coaches'); |
|
| 37 | - } |
|
| 29 | + /** |
|
| 30 | + * Reverse the migrations. |
|
| 31 | + * |
|
| 32 | + * @return void |
|
| 33 | + */ |
|
| 34 | + public function down() |
|
| 35 | + { |
|
| 36 | + Schema::drop('coaches'); |
|
| 37 | + } |
|
| 38 | 38 | } |
@@ -4,19 +4,19 @@ |
||
| 4 | 4 | |
| 5 | 5 | class CreateTeamTable |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Run the migrations. |
|
| 9 | - * |
|
| 10 | - * @return void |
|
| 11 | - */ |
|
| 12 | - public function run() |
|
| 13 | - { |
|
| 14 | - Capsule::schema()->dropIfExists('teams'); |
|
| 15 | - Capsule::schema()->create('teams', function ($table) { |
|
| 16 | - $table->increments('id'); |
|
| 17 | - $table->string('name'); |
|
| 18 | - $table->string('nationality',2); |
|
| 19 | - $table->timestamps(); |
|
| 20 | - }); |
|
| 21 | - } |
|
| 7 | + /** |
|
| 8 | + * Run the migrations. |
|
| 9 | + * |
|
| 10 | + * @return void |
|
| 11 | + */ |
|
| 12 | + public function run() |
|
| 13 | + { |
|
| 14 | + Capsule::schema()->dropIfExists('teams'); |
|
| 15 | + Capsule::schema()->create('teams', function ($table) { |
|
| 16 | + $table->increments('id'); |
|
| 17 | + $table->string('name'); |
|
| 18 | + $table->string('nationality',2); |
|
| 19 | + $table->timestamps(); |
|
| 20 | + }); |
|
| 21 | + } |
|
| 22 | 22 | } |