Completed
Push — master ( 5e9888...3ffa02 )
by Vincenzo
02:34
created
api/index.php 2 patches
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 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\LeagueRound;
10
-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\LeagueRound;
10
+use App\Lib\DsManager\Models\Orm\Match;
11 11
 use App\Lib\DsManager\Models\Orm\MatchResult;
12 12
 use \App\Lib\Helpers\Responder;
13 13
 use \App\Lib\DsManager\Models\Orm\Player;
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 $c = new \Slim\Container($configuration);
23 23
 $api = new \Slim\App($c);
24 24
 
25
-$api->get('/ping', function ($request, $response, $args) {
25
+$api->get('/ping', function($request, $response, $args) {
26 26
     $jsonResp = json_encode(
27 27
         [
28 28
             "status" => "service up",
@@ -32,34 +32,34 @@  discard block
 block discarded – undo
32 32
     return Responder::getJsonResponse($jsonResp, $response);
33 33
 });
34 34
 
35
-$api->get('/players', function ($request, $response, $args) {
35
+$api->get('/players', function($request, $response, $args) {
36 36
     $json = json_encode(Player::all());
37 37
     return Responder::getJsonResponse($json, $response);
38 38
 });
39 39
 
40 40
 
41
-$api->get('/players/{id}', function ($request, $response, $args) {
41
+$api->get('/players/{id}', function($request, $response, $args) {
42 42
     return Responder::getJsonResponse(
43 43
         Player::findOrFail($args['id']),
44 44
         $response
45 45
     );
46 46
 });
47 47
 
48
-$api->get('/coaches', function ($request, $response, $args) {
48
+$api->get('/coaches', function($request, $response, $args) {
49 49
     return Responder::getJsonResponse(
50 50
         Coach::all(),
51 51
         $response
52 52
     );
53 53
 });
54 54
 
55
-$api->get('/teams', function ($request, $response, $args) {
55
+$api->get('/teams', function($request, $response, $args) {
56 56
     return Responder::getJsonResponse(
57 57
         Team::all(),
58 58
         $response
59 59
     );
60 60
 });
61 61
 
62
-$api->get('/teams/{id}', function ($request, $response, $args) {
62
+$api->get('/teams/{id}', function($request, $response, $args) {
63 63
     return Responder::getJsonResponse(
64 64
         Team::complete()
65 65
             ->where(
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     );
72 72
 });
73 73
 
74
-$api->get('/teams/{id}/players', function ($request, $response, $args) {
74
+$api->get('/teams/{id}/players', function($request, $response, $args) {
75 75
     return Responder::getJsonResponse(
76 76
         Team::with(
77 77
             'roster'
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     );
85 85
 });
86 86
 
87
-$api->get('/teams/{id}/players/{playerId}', function ($request, $response, $args) {
87
+$api->get('/teams/{id}/players/{playerId}', function($request, $response, $args) {
88 88
     return Responder::getJsonResponse(
89 89
         Player::statistics()->where(
90 90
             [
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     );
97 97
 });
98 98
 
99
-$api->get('/teams/{id}/coach', function ($request, $response, $args) {
99
+$api->get('/teams/{id}/coach', function($request, $response, $args) {
100 100
     return Responder::getJsonResponse(
101 101
         Team::with(
102 102
             'coach'
@@ -109,14 +109,14 @@  discard block
 block discarded – undo
109 109
     );
110 110
 });
111 111
 
112
-$api->get('/leagues', function ($request, $response, $args) {
112
+$api->get('/leagues', function($request, $response, $args) {
113 113
     return Responder::getJsonResponse(
114 114
         League::all(),
115 115
         $response
116 116
     );
117 117
 });
118 118
 
119
-$api->get('/leagues/{id}', function ($request, $response, $args) {
119
+$api->get('/leagues/{id}', function($request, $response, $args) {
120 120
     return Responder::getJsonResponse(
121 121
         League::with('rounds')
122 122
             ->where(
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     );
129 129
 });
130 130
 
131
-$api->get('/leagues/{id}/rounds/{roundId}', function ($request, $response, $args) {
131
+$api->get('/leagues/{id}/rounds/{roundId}', function($request, $response, $args) {
132 132
     return Responder::getJsonResponse(
133 133
         LeagueRound::complete()
134 134
             ->where(
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     );
141 141
 });
142 142
 
143
-$api->put('/leagues/{id}/rounds/{roundId}/simulate', function ($request, $response, $args) {
143
+$api->put('/leagues/{id}/rounds/{roundId}/simulate', function($request, $response, $args) {
144 144
     return Responder::getJsonResponse(
145 145
         MatchSimulator::simulateRound(
146 146
             $args['roundId']
@@ -149,14 +149,14 @@  discard block
 block discarded – undo
149 149
     );
150 150
 });
151 151
 
152
-$api->get('/matches', function ($request, $response, $args) {
152
+$api->get('/matches', function($request, $response, $args) {
153 153
     return Responder::getJsonResponse(
154 154
         Match::teams()->get(),
155 155
         $response
156 156
     );
157 157
 });
158 158
 
159
-$api->post('/matches', function ($request, $response, $args) {
159
+$api->post('/matches', function($request, $response, $args) {
160 160
     $json = $request->getBody();
161 161
     $json = json_decode($json, true);
162 162
     return Responder::getJsonResponse(
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
     );
168 168
 });
169 169
 
170
-$api->get('/matches/{id}', function ($request, $response, $args) {
170
+$api->get('/matches/{id}', function($request, $response, $args) {
171 171
     return Responder::getJsonResponse(
172 172
         Match::complete()
173 173
             ->where(
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
     );
180 180
 });
181 181
 
182
-$api->get('/matches/{id}/result', function ($request, $response, $args) {
182
+$api->get('/matches/{id}/result', function($request, $response, $args) {
183 183
     $result = MatchResult::complete()
184 184
         ->where(
185 185
             [
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     );
194 194
 });
195 195
 
196
-$api->put('/matches/{id}/simulate', function ($request, $response, $args) {
196
+$api->put('/matches/{id}/simulate', function($request, $response, $args) {
197 197
     return Responder::getJsonResponse(
198 198
         MatchSimulator::simulateCompleteResult(
199 199
             $args['id']
Please login to merge, or discard this patch.