Test Setup Failed
Pull Request — master (#42)
by Matthew
08:26
created
api/Domain/Repositories/DraftStatsRepository.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
     $load_stmt->setFetchMode(\PDO::FETCH_INTO, $stats);
23 23
 
24
-    if(!$load_stmt->execute()) {
24
+    if (!$load_stmt->execute()) {
25 25
       throw new \Exception("Unable to load draft stats");
26 26
     }
27 27
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
       return null;
30 30
     }
31 31
 
32
-    if(!$load_stmt->fetch()) {
32
+    if (!$load_stmt->fetch()) {
33 33
       throw new \Exception("Error while loading draft stats");
34 34
     }
35 35
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     $insert_stmt->bindValue(':least_drafted_position', $draft_stats->least_drafted_position);
104 104
     $insert_stmt->bindValue(':least_drafted_position_count', $draft_stats->least_drafted_position_count);
105 105
 
106
-    if(!$insert_stmt->execute()) {
106
+    if (!$insert_stmt->execute()) {
107 107
       throw new \Exception("Unable to insert new draft stats row.");
108 108
     }
109 109
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     $delete_stmt = $this->app['db']->prepare("DELETE FROM draft_stats WHERE draft_id = ?");
119 119
     $delete_stmt->bindParam(1, $draft_id);
120 120
 
121
-    if(!$delete_stmt->execute()) {
121
+    if (!$delete_stmt->execute()) {
122 122
       throw new \Exception("Unable to delete existing stats rows.");
123 123
     }
124 124
   }
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     $row = $stmt->fetch();
171 171
 
172 172
     $stats->shortest_avg_pick_manager_name = $row['manager_name'];
173
-    $stats->shortest_avg_pick_seconds = (int) $row['pick_average'];
173
+    $stats->shortest_avg_pick_seconds = (int)$row['pick_average'];
174 174
   }
175 175
 
176 176
   private function _LoadSlowestPick($draft_id, DraftStats &$stats) {
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
     $row = $stmt->fetch();
191 191
 
192 192
     $stats->longest_single_pick_manager_name = $row['manager_name'];
193
-    $stats->longest_single_pick_seconds = (int) $row['pick_max'];
193
+    $stats->longest_single_pick_seconds = (int)$row['pick_max'];
194 194
   }
195 195
 
196 196
   private function _LoadFastestPick($draft_id, DraftStats &$stats) {
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     $row = $stmt->fetch();
211 211
 
212 212
     $stats->shortest_single_pick_manager_name = $row['manager_name'];
213
-    $stats->shortest_single_pick_seconds = (int) $row['pick_min'];
213
+    $stats->shortest_single_pick_seconds = (int)$row['pick_min'];
214 214
   }
215 215
 
216 216
   private function _LoadAveragePickTime($draft_id, DraftStats &$stats) {
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 
226 226
     $row = $stmt->fetch();
227 227
 
228
-    $stats->average_pick_seconds = (int) $row['pick_average'];
228
+    $stats->average_pick_seconds = (int)$row['pick_average'];
229 229
   }
230 230
 
231 231
   private function _LoadRoundTimes(Draft $draft, DraftStats &$stats) {
@@ -243,8 +243,8 @@  discard block
 block discarded – undo
243 243
 
244 244
     $row = $stmt->fetch();
245 245
 
246
-    $stats->longest_round = (int) $row['player_round'];
247
-    $stats->longest_round_seconds = (int) $row['round_time'];
246
+    $stats->longest_round = (int)$row['player_round'];
247
+    $stats->longest_round_seconds = (int)$row['round_time'];
248 248
 
249 249
     //Stupid that I can't just re-use the above statement. All that changes is DESC to ASC. Stupid.
250 250
     $stmt = $this->app['db']->prepare("SELECT DISTINCT p.player_round, sum( p.pick_duration ) AS round_time
@@ -261,8 +261,8 @@  discard block
 block discarded – undo
261 261
 
262 262
     $row = $stmt->fetch();
263 263
 
264
-    $stats->shortest_round = (int) $row['player_round'];
265
-    $stats->shortest_round_seconds = (int) $row['round_time'];
264
+    $stats->shortest_round = (int)$row['player_round'];
265
+    $stats->shortest_round_seconds = (int)$row['round_time'];
266 266
 
267 267
     $stmt = $this->app['db']->prepare("SELECT p.player_round, sum( p.pick_duration ) / ? AS avg_round_time
268 268
     FROM players p
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 
280 280
     $row = $stmt->fetch();
281 281
 
282
-    $stats->average_round_seconds = (int) $row['avg_round_time'];
282
+    $stats->average_round_seconds = (int)$row['avg_round_time'];
283 283
   }
284 284
 
285 285
   private function _LoadTeamSuperlatives($draft_id, DraftStats &$stats, $teams) {
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
     $row = $stmt->fetch();
299 299
 
300 300
     $stats->most_drafted_team = isset($row['team']) ? $teams[$row['team']] : "";
301
-    $stats->most_drafted_team_count = (int) $row['team_occurences'];
301
+    $stats->most_drafted_team_count = (int)$row['team_occurences'];
302 302
 
303 303
     $stmt = $this->app['db']->prepare("SELECT DISTINCT p.team, count(team) as team_occurences
304 304
     FROM players p
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
     $row = $stmt->fetch();
316 316
 
317 317
     $stats->least_drafted_team = isset($row['team']) ? $teams[$row['team']] : "";
318
-    $stats->least_drafted_team_count = (int) $row['team_occurences'];
318
+    $stats->least_drafted_team_count = (int)$row['team_occurences'];
319 319
   }
320 320
 
321 321
   private function _LoadPositionSuperlatives($draft_id, DraftStats &$stats, $positions) {
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
     $row = $stmt->fetch();
335 335
 
336 336
     $stats->most_drafted_position = isset($row['position']) ? $positions[$row['position']] : "";
337
-    $stats->most_drafted_position_count = (int) $row['position_occurences'];
337
+    $stats->most_drafted_position_count = (int)$row['position_occurences'];
338 338
 
339 339
     $stmt = $this->app['db']->prepare("SELECT DISTINCT p.position, count(position) as position_occurences
340 340
     FROM players p
@@ -351,6 +351,6 @@  discard block
 block discarded – undo
351 351
     $row = $stmt->fetch();
352 352
 
353 353
     $stats->least_drafted_position = isset($row['position']) ? $positions[$row['position']] : "";
354
-    $stats->least_drafted_position_count = (int) $row['position_occurences'];
354
+    $stats->least_drafted_position_count = (int)$row['position_occurences'];
355 355
   }
356 356
 }
Please login to merge, or discard this patch.
api/Domain/Repositories/LoginUserRepository.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -85,11 +85,11 @@  discard block
 block discarded – undo
85 85
 
86 86
     $users = array();
87 87
 
88
-    if(!$load_stmt->execute()) {
88
+    if (!$load_stmt->execute()) {
89 89
       throw new \Exception("Unable to load users.");
90 90
     }
91 91
 
92
-    while($user = $load_stmt->fetch()) {
92
+    while ($user = $load_stmt->fetch()) {
93 93
       
94 94
       $users[] = $this->_ScrubUser($user);
95 95
     }
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
       throw new \Exception("Unable to create user.");
118 118
     }
119 119
 
120
-    $user->id = (int) $this->app['db']->lastInsertId();
120
+    $user->id = (int)$this->app['db']->lastInsertId();
121 121
 
122 122
     return $user;
123 123
   }
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 
156 156
     $result = $update_stmt->execute();
157 157
 
158
-    if($result == false) {
158
+    if ($result == false) {
159 159
       throw new \Exception("Unable to erase verification key for user.");
160 160
     }
161 161
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     $delete_stmt = $this->app['db']->prepare("DELETE FROM users WHERE id = ?");
167 167
     $delete_stmt->bindParam(1, $user->id);
168 168
 
169
-    if(!$delete_stmt->execute()) {
169
+    if (!$delete_stmt->execute()) {
170 170
       throw new \Exception("Unable to delete user #$user->id");
171 171
     }
172 172
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 
176 176
   public function NameIsUnique($name, $id = null) {
177 177
     $name = strtolower($name);
178
-    if($id == null) {
178
+    if ($id == null) {
179 179
       $name_stmt = $this->app['db']->prepare("SELECT name FROM users WHERE name LIKE ?");
180 180
       $name_stmt->bindParam(1, $name);
181 181
     } else {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
       $name_stmt->bindParam(2, $id);
185 185
     }
186 186
 
187
-    if(!$name_stmt->execute()) {
187
+    if (!$name_stmt->execute()) {
188 188
       throw new \Exception(sprintf('Name %s is invalid', $name));
189 189
     }
190 190
 
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
   }
193 193
 
194 194
   public function EmailExists($email, $id = null) {
195
-    if($id == null) {
195
+    if ($id == null) {
196 196
       $email_stmt = $this->app['db']->prepare("SELECT email FROM users WHERE email = ?");
197 197
       $email_stmt->bindParam(1, $email);
198 198
     } else {
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
     $email_stmt = $this->app['db']->prepare("SELECT email FROM users WHERE email = ? LIMIT 1");
214 214
     $email_stmt->bindParam(1, $email);
215 215
 
216
-    if(!$email_stmt->execute()) {
216
+    if (!$email_stmt->execute()) {
217 217
       throw new \Exception(sprintf('Email %s is invalid', $email));
218 218
     }
219 219
 
@@ -229,11 +229,11 @@  discard block
 block discarded – undo
229 229
 
230 230
     $users = array();
231 231
 
232
-    if(!$search_stmt->execute()) {
232
+    if (!$search_stmt->execute()) {
233 233
       throw new \Exception("Unable to load users");
234 234
     }
235 235
 
236
-    while($user = $search_stmt->fetch()) {
236
+    while ($user = $search_stmt->fetch()) {
237 237
       unset($user->enabled);
238 238
       unset($user->email);
239 239
       unset($user->password);
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
     $verification_stmt->bindParam(1, $email);
254 254
     $verification_stmt->bindParam(2, $verificationKey);
255 255
 
256
-    if(!$verification_stmt->execute()) {
256
+    if (!$verification_stmt->execute()) {
257 257
       throw new \Exception('Verification is invalid.');
258 258
     }
259 259
 
Please login to merge, or discard this patch.
Braces   +18 added lines, -12 removed lines patch added patch discarded remove patch
@@ -25,11 +25,13 @@  discard block
 block discarded – undo
25 25
     $load_stmt->setFetchMode(\PDO::FETCH_INTO, $user);
26 26
     $load_stmt->bindParam(1, $email);
27 27
 
28
-    if (!$load_stmt->execute())
29
-      throw new \Exception(sprintf('Email "%s" does not exist.', $email));
28
+    if (!$load_stmt->execute()) {
29
+          throw new \Exception(sprintf('Email "%s" does not exist.', $email));
30
+    }
30 31
 
31
-    if (!$load_stmt->fetch())
32
-      throw new \Exception(sprintf('Email "%s" does not exist.', $email));
32
+    if (!$load_stmt->fetch()) {
33
+          throw new \Exception(sprintf('Email "%s" does not exist.', $email));
34
+    }
33 35
 
34 36
     return $user;
35 37
   }
@@ -43,11 +45,13 @@  discard block
 block discarded – undo
43 45
     $load_stmt->setFetchMode(\PDO::FETCH_INTO, $user);
44 46
     $load_stmt->bindParam(1, $id);
45 47
 
46
-    if (!$load_stmt->execute())
47
-      throw new \Exception(sprintf('User #%s does not exist.', $id));
48
+    if (!$load_stmt->execute()) {
49
+          throw new \Exception(sprintf('User #%s does not exist.', $id));
50
+    }
48 51
 
49
-    if (!$load_stmt->fetch())
50
-      throw new \Exception(sprintf('User #%s does not exist.', $id));
52
+    if (!$load_stmt->fetch()) {
53
+          throw new \Exception(sprintf('User #%s does not exist.', $id));
54
+    }
51 55
 
52 56
     return $user;
53 57
   }
@@ -61,11 +65,13 @@  discard block
 block discarded – undo
61 65
     $load_stmt->setFetchMode(\PDO::FETCH_INTO, $user);
62 66
     $load_stmt->bindParam(1, $id);
63 67
 
64
-    if (!$load_stmt->execute())
65
-      throw new \Exception(sprintf('User #%s does not exist.', $id));
68
+    if (!$load_stmt->execute()) {
69
+          throw new \Exception(sprintf('User #%s does not exist.', $id));
70
+    }
66 71
 
67
-    if (!$load_stmt->fetch())
68
-      throw new \Exception(sprintf('User #%s does not exist.', $id));
72
+    if (!$load_stmt->fetch()) {
73
+          throw new \Exception(sprintf('User #%s does not exist.', $id));
74
+    }
69 75
 
70 76
     unset($user->enabled);
71 77
     unset($user->email);
Please login to merge, or discard this patch.
tests/api/Domain/Validators/RoundTimeValidatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 class RoundTimeValidatorTest extends TestCase {
10 10
   function setUp() {
11
-    $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php';
11
+    $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php';
12 12
     $this->roundTimeCreateModel = new RoundTimeCreateModel();
13 13
     $this->sut = new RoundTimeValidator($this->app);
14 14
   }
Please login to merge, or discard this patch.
tests/api/Domain/Validators/PickValidatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
 class PickValidatorTest extends TestCase {
12 12
   function setUp() {
13
-    $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php';
13
+    $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php';
14 14
     $draftDataRepository = new DraftDataRepository($this->app);
15 15
     $this->app['phpdraft.DraftDataRepository'] = $draftDataRepository;
16 16
     $this->sut = new PickValidator($this->app);
Please login to merge, or discard this patch.
tests/api/Domain/Validators/ProPlayerValidatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 class ProPlayerValidatorTest extends TestCase {
9 9
   function setUp() {
10
-    $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php';
10
+    $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php';
11 11
     $draftDataRepository = new DraftDataRepository($this->app);
12 12
     $this->sut = new ProPlayerValidator($this->app);
13 13
     $this->app['phpdraft.DraftDataRepository'] = $draftDataRepository;
Please login to merge, or discard this patch.
tests/api/Domain/Validators/TradeValidatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 class TradeValidatorTest extends TestCase {
13 13
   function setUp() {
14
-    $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php';
14
+    $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php';
15 15
     $this->draft = new Draft();
16 16
     $this->trade = new Trade();
17 17
     $this->trade->manager1 = new Manager();
Please login to merge, or discard this patch.