@@ -13,7 +13,7 @@ |
||
| 13 | 13 | public function run() |
| 14 | 14 | { |
| 15 | 15 | Capsule::schema()->dropIfExists('matches'); |
| 16 | - Capsule::schema()->create('matches', function (Blueprint $table) { |
|
| 16 | + Capsule::schema()->create('matches', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('home_team_id'); |
| 19 | 19 | $table->integer('goal_home')->default(0); |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | $c = new \Slim\Container($configuration); |
| 18 | 18 | $api = new \Slim\App($c); |
| 19 | 19 | |
| 20 | -$api->get('/ping', function ($request, $response, $args) {
|
|
| 20 | +$api->get('/ping', function($request, $response, $args) {
|
|
| 21 | 21 | $jsonResp = json_encode( |
| 22 | 22 | [ |
| 23 | 23 | "status" => "service up", |
@@ -28,34 +28,34 @@ discard block |
||
| 28 | 28 | return Responder::getJsonResponse($jsonResp, $response); |
| 29 | 29 | }); |
| 30 | 30 | |
| 31 | -$api->get('/players', function ($request, $response, $args) {
|
|
| 31 | +$api->get('/players', function($request, $response, $args) {
|
|
| 32 | 32 | $json = json_encode(Player::all()); |
| 33 | 33 | return Responder::getJsonResponse($json, $response); |
| 34 | 34 | }); |
| 35 | 35 | |
| 36 | 36 | |
| 37 | -$api->get('/players/{id}', function ($request, $response, $args) {
|
|
| 37 | +$api->get('/players/{id}', function($request, $response, $args) {
|
|
| 38 | 38 | return Responder::getJsonResponse( |
| 39 | 39 | Player::findOrFail($args['id']), |
| 40 | 40 | $response |
| 41 | 41 | ); |
| 42 | 42 | }); |
| 43 | 43 | |
| 44 | -$api->get('/coaches', function ($request, $response, $args) {
|
|
| 44 | +$api->get('/coaches', function($request, $response, $args) {
|
|
| 45 | 45 | return Responder::getJsonResponse( |
| 46 | 46 | Coach::all(), |
| 47 | 47 | $response |
| 48 | 48 | ); |
| 49 | 49 | }); |
| 50 | 50 | |
| 51 | -$api->get('/teams', function ($request, $response, $args) {
|
|
| 51 | +$api->get('/teams', function($request, $response, $args) {
|
|
| 52 | 52 | return Responder::getJsonResponse( |
| 53 | 53 | Team::all(), |
| 54 | 54 | $response |
| 55 | 55 | ); |
| 56 | 56 | }); |
| 57 | 57 | |
| 58 | -$api->get('/teams/{id}', function ($request, $response, $args) {
|
|
| 58 | +$api->get('/teams/{id}', function($request, $response, $args) {
|
|
| 59 | 59 | return Responder::getJsonResponse( |
| 60 | 60 | Team::with( |
| 61 | 61 | 'roster', |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | ); |
| 70 | 70 | }); |
| 71 | 71 | |
| 72 | -$api->get('/teams/{id}/players', function ($request, $response, $args) {
|
|
| 72 | +$api->get('/teams/{id}/players', function($request, $response, $args) {
|
|
| 73 | 73 | return Responder::getJsonResponse( |
| 74 | 74 | Team::with( |
| 75 | 75 | 'roster' |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | ); |
| 83 | 83 | }); |
| 84 | 84 | |
| 85 | -$api->get('/teams/{id}/players/{playerId}', function ($request, $response, $args) {
|
|
| 85 | +$api->get('/teams/{id}/players/{playerId}', function($request, $response, $args) {
|
|
| 86 | 86 | return Responder::getJsonResponse( |
| 87 | 87 | Player::where( |
| 88 | 88 | [ |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | ); |
| 95 | 95 | }); |
| 96 | 96 | |
| 97 | -$api->get('/teams/{id}/coach', function ($request, $response, $args) {
|
|
| 97 | +$api->get('/teams/{id}/coach', function($request, $response, $args) {
|
|
| 98 | 98 | return Responder::getJsonResponse( |
| 99 | 99 | Team::with( |
| 100 | 100 | 'coach' |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | ); |
| 108 | 108 | }); |
| 109 | 109 | |
| 110 | -$api->get('/matches', function ($request, $response, $args) {
|
|
| 110 | +$api->get('/matches', function($request, $response, $args) {
|
|
| 111 | 111 | return Responder::getJsonResponse( |
| 112 | 112 | \App\Lib\DsManager\Models\Orm\Match::with( |
| 113 | 113 | 'homeTeam', |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | ); |
| 118 | 118 | }); |
| 119 | 119 | |
| 120 | -$api->get('/matches/{id}', function ($request, $response, $args) {
|
|
| 120 | +$api->get('/matches/{id}', function($request, $response, $args) {
|
|
| 121 | 121 | return Responder::getJsonResponse( |
| 122 | 122 | \App\Lib\DsManager\Models\Orm\Match::with( |
| 123 | 123 | 'homeTeam', |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | ); |
| 136 | 136 | }); |
| 137 | 137 | |
| 138 | -$api->get('/matches/{id}/result', function ($request, $response, $args) {
|
|
| 138 | +$api->get('/matches/{id}/result', function($request, $response, $args) {
|
|
| 139 | 139 | $result = \App\Lib\DsManager\Models\Orm\MatchResult::with( |
| 140 | 140 | 'homeTeam', |
| 141 | 141 | 'homeTeam.roster', |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | ); |
| 156 | 156 | }); |
| 157 | 157 | |
| 158 | -$api->put('/matches/{id}/simulate', function ($request, $response, $args) {
|
|
| 158 | +$api->put('/matches/{id}/simulate', function($request, $response, $args) {
|
|
| 159 | 159 | $result = \App\Lib\DsManager\Models\Orm\MatchResult::with( |
| 160 | 160 | 'homeTeam', |
| 161 | 161 | 'homeTeam.roster', |