@@ -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? "; |
@@ -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(); |
@@ -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++; |
@@ -22,10 +22,10 @@ |
||
22 | 22 | */ |
23 | 23 | public static function get($key, $directory = null) |
24 | 24 | { |
25 | - $fileName = $directory . "config/"; |
|
25 | + $fileName = $directory."config/"; |
|
26 | 26 | $exp = explode(".", $key); |
27 | - if (is_array($exp) && $exp[0] != null && $exp[1] != null && file_exists($fileName . $exp[0] . ".php")) { |
|
28 | - $conf = include($fileName . $exp[0] . ".php"); |
|
27 | + if (is_array($exp) && $exp[0] != null && $exp[1] != null && file_exists($fileName.$exp[0].".php")) { |
|
28 | + $conf = include($fileName.$exp[0].".php"); |
|
29 | 29 | $val = array_key_exists($exp[1], $conf) ? $conf[$exp[1]] : null; |
30 | 30 | return $val; |
31 | 31 | } |
@@ -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 \App\Lib\Helpers\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 \App\Lib\Helpers\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 \App\Lib\Helpers\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 \App\Lib\Helpers\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 \App\Lib\Helpers\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 \App\Lib\Helpers\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 \App\Lib\Helpers\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 \App\Lib\Helpers\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 \App\Lib\Helpers\Responder::getJsonResponse( |
99 | 99 | Team::with( |
100 | 100 | 'coach' |