@@ -12,7 +12,7 @@ |
||
12 | 12 | |
13 | 13 | $minified_css = ''; |
14 | 14 | |
15 | - foreach($colors as $position => $hex_color_key) { |
|
15 | + foreach ($colors as $position => $hex_color_key) { |
|
16 | 16 | $minified_css .= "div.pick$position{background-color:$hex_color_key;}"; |
17 | 17 | } |
18 | 18 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | $draft_id = (int)$request->get('id'); |
12 | 12 | $getDraftData = $request->get('get_draft_data') == 'true'; |
13 | 13 | |
14 | - if(empty($draft_id) || $draft_id == 0) { |
|
14 | + if (empty($draft_id) || $draft_id == 0) { |
|
15 | 15 | throw new \Exception("Unable to load draft."); |
16 | 16 | } |
17 | 17 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $draftId = (int)$request->get('draft_id'); |
31 | 31 | $amount = (int)$request->get('amount'); |
32 | 32 | |
33 | - if($amount == 0) { |
|
33 | + if ($amount == 0) { |
|
34 | 34 | $amount = 10; |
35 | 35 | } |
36 | 36 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $draftId = (int)$request->get('draft_id'); |
42 | 42 | $amount = (int)$request->get('amount'); |
43 | 43 | |
44 | - if($amount == 0) { |
|
44 | + if ($amount == 0) { |
|
45 | 45 | $amount = 10; |
46 | 46 | } |
47 | 47 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | public function GetAllManagerPicks(Application $app, Request $request) { |
54 | 54 | $draftId = (int)$request->get('draft_id'); |
55 | - $managerId = (int)$request->get('manager_id'); |
|
55 | + $managerId = (int)$request->get('manager_id'); |
|
56 | 56 | |
57 | 57 | $draft = $app['phpdraft.DraftRepository']->Load($draftId); |
58 | 58 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | #If there's a space and no matches so far, create another searches where we manually split them firstname/lastname by sace automatically |
104 | 104 | $splitNameAutomatically = count($pickSearchModel->player_results) == 0 && strpos($keywords, " ") != false; |
105 | 105 | |
106 | - if($splitNameAutomatically) { |
|
106 | + if ($splitNameAutomatically) { |
|
107 | 107 | $pickSearchModel = new PickSearchModel($draftId, $keywords, $team, $position, $sort); |
108 | 108 | $names = explode(" ", $keywords, 2); |
109 | 109 | $pickSearchModel = $app['phpdraft.PickRepository']->SearchSplit($pickSearchModel, $names[0], $names[1]); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $pick = $app['phpdraft.PickRepository']->Load($pick_id); |
122 | 122 | |
123 | 123 | $pick->depth_chart_position_id = (int)$request->get('position_id'); |
124 | - } catch(\Exception $e) { |
|
124 | + } catch (\Exception $e) { |
|
125 | 125 | $response = new PhpDraftResponse(false, array()); |
126 | 126 | $response->errors[] = "Unable to edit pick #$pick_id"; |
127 | 127 | |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | |
131 | 131 | $validity = $app['phpdraft.PickValidator']->IsPickValidForDepthChartUpdate($draft, $pick); |
132 | 132 | |
133 | - if(!$validity->success) { |
|
133 | + if (!$validity->success) { |
|
134 | 134 | return $app->json($validity, $validity->responseType()); |
135 | 135 | } |
136 | 136 |
@@ -17,13 +17,13 @@ |
||
17 | 17 | $draft_id = (int)$request->get('draft_id'); |
18 | 18 | $manager_id = (int)$request->get('manager_id'); |
19 | 19 | |
20 | - if(empty($draft_id) || $draft_id == 0) { |
|
20 | + if (empty($draft_id) || $draft_id == 0) { |
|
21 | 21 | throw new \Exception("Unable to load draft."); |
22 | 22 | } |
23 | 23 | |
24 | 24 | $draft = $app['phpdraft.DraftRepository']->Load($draft_id); |
25 | 25 | |
26 | - if(!$draft->using_depth_charts) { |
|
26 | + if (!$draft->using_depth_charts) { |
|
27 | 27 | $response = $app['phpdraft.ResponseFactory'](false, array("Draft is not configured to use depth charts.")); |
28 | 28 | return $app->json($response, $response->responseType()); |
29 | 29 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | try { |
23 | 23 | $credentialValidity = $app['phpdraft.LoginUserValidator']->areLoginCredentialsValid($email, $password); |
24 | 24 | |
25 | - if($credentialValidity->success == false) { |
|
25 | + if ($credentialValidity->success == false) { |
|
26 | 26 | throw new UsernameNotFoundException(sprintf('Email %s does not exist', $email)); |
27 | 27 | } |
28 | 28 | |
@@ -42,13 +42,13 @@ discard block |
||
42 | 42 | $response->auth_timeout = $authTimeout->format('Y-m-d H:i:s'); |
43 | 43 | |
44 | 44 | //If user is enabled, provided valid password and has a verification (pwd reset) key, wipe it (no longer needed) |
45 | - if($user->hasVerificationKey()) { |
|
45 | + if ($user->hasVerificationKey()) { |
|
46 | 46 | $app['phpdraft.LoginUserRepository']->EraseVerificationKey($user->getEmail()); |
47 | 47 | } |
48 | 48 | } |
49 | 49 | } catch (UsernameNotFoundException $e) { |
50 | 50 | $response->success = false; |
51 | - $response->errors[] = 'Invalid credentials.'; |
|
51 | + $response->errors[] = 'Invalid credentials.'; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | return $app->json($response, $response->responseType()); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | public function Register(Application $app, Request $request) { |
58 | 58 | $validity = $app['phpdraft.LoginUserValidator']->IsRegistrationUserValid($request); |
59 | 59 | |
60 | - if(!$validity->success) { |
|
60 | + if (!$validity->success) { |
|
61 | 61 | return $app->json($validity, Response::HTTP_BAD_REQUEST); |
62 | 62 | } |
63 | 63 | |
@@ -70,12 +70,12 @@ discard block |
||
70 | 70 | $captcha = $request->get('_recaptcha'); |
71 | 71 | $userIp = $request->getClientIp(); |
72 | 72 | |
73 | - if(!in_array($userIp, $whitelist)){ |
|
73 | + if (!in_array($userIp, $whitelist)) { |
|
74 | 74 | |
75 | 75 | $recaptcha = new \ReCaptcha\ReCaptcha(RECAPTCHA_SECRET); |
76 | 76 | $recaptchaResponse = $recaptcha->verify($captcha, $userIp); |
77 | 77 | |
78 | - if(!$recaptchaResponse->isSuccess()) { |
|
78 | + if (!$recaptchaResponse->isSuccess()) { |
|
79 | 79 | $response = new PhpDraftResponse(false, array()); |
80 | 80 | $response->errors = $recaptchaResponse->getErrorCodes(); |
81 | 81 | return $app->json($response, $response->responseType()); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | public function VerifyAccount(Application $app, Request $request) { |
97 | 97 | $validity = $app['phpdraft.LoginUserValidator']->IsVerificationValid($request); |
98 | 98 | |
99 | - if(!$validity->success) { |
|
99 | + if (!$validity->success) { |
|
100 | 100 | return $app->json($validity, Response::HTTP_BAD_REQUEST); |
101 | 101 | } |
102 | 102 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | public function LostPassword(Application $app, Request $request) { |
113 | 113 | $validity = $app['phpdraft.LoginUserValidator']->IsForgottenPasswordUserValid($request); |
114 | 114 | |
115 | - if(!$validity->success) { |
|
115 | + if (!$validity->success) { |
|
116 | 116 | return $app->json($validity, Response::HTTP_BAD_REQUEST); |
117 | 117 | } |
118 | 118 | |
@@ -127,12 +127,12 @@ discard block |
||
127 | 127 | $captcha = $request->get('_recaptcha'); |
128 | 128 | $userIp = $request->getClientIp(); |
129 | 129 | |
130 | - if(!in_array($userIp, $whitelist)){ |
|
130 | + if (!in_array($userIp, $whitelist)) { |
|
131 | 131 | |
132 | 132 | $recaptcha = new \ReCaptcha\ReCaptcha(RECAPTCHA_SECRET); |
133 | 133 | $recaptchaResponse = $recaptcha->verify($captcha, $userIp); |
134 | 134 | |
135 | - if(!$recaptchaResponse->isSuccess()) { |
|
135 | + if (!$recaptchaResponse->isSuccess()) { |
|
136 | 136 | $response = new PhpDraftResponse(false, array()); |
137 | 137 | $response->errors = $recaptchaResponse->getErrorCodes(); |
138 | 138 | return $app->json($response, $response->responseType()); |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | public function ResetPassword(Application $app, Request $request) { |
159 | 159 | $validity = $app['phpdraft.LoginUserValidator']->IsResetPasswordRequestValid($request); |
160 | 160 | |
161 | - if(!$validity->success) { |
|
161 | + if (!$validity->success) { |
|
162 | 162 | return $app->json($validity, Response::HTTP_BAD_REQUEST); |
163 | 163 | } |
164 | 164 |
@@ -57,7 +57,7 @@ |
||
57 | 57 | |
58 | 58 | ); |
59 | 59 | |
60 | -foreach($configuration_variables as $name => $value) { |
|
60 | +foreach ($configuration_variables as $name => $value) { |
|
61 | 61 | define($name, $value); |
62 | 62 | } |
63 | 63 |
@@ -2,7 +2,6 @@ |
||
2 | 2 | namespace PhpDraft\Domain\Services; |
3 | 3 | |
4 | 4 | use Silex\Application; |
5 | -use Symfony\Component\HttpFoundation\Request; |
|
6 | 5 | use phpFastCache\CacheManager; |
7 | 6 | |
8 | 7 | //A wrapper service for the PHP-based caching to save on several MySQL reads |
@@ -27,7 +27,7 @@ |
||
27 | 27 | public function GetCachedItem($itemKey) { |
28 | 28 | $cachedItem = $this->_LoadCacheObject($itemKey); |
29 | 29 | |
30 | - if(!$cachedItem->isHit()) { |
|
30 | + if (!$cachedItem->isHit()) { |
|
31 | 31 | return null; |
32 | 32 | } |
33 | 33 |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | //Validators |
8 | 8 | //Validators are for ensuring that request data is valid, and ensures save data |
9 | 9 | //does not result in corrupt data. |
10 | -$app['phpdraft.LoginUserValidator'] = function () use ($app) { |
|
10 | +$app['phpdraft.LoginUserValidator'] = function() use ($app) { |
|
11 | 11 | return new \PhpDraft\Domain\Validators\LoginUserValidator($app); |
12 | 12 | }; |
13 | 13 | |
@@ -15,26 +15,26 @@ discard block |
||
15 | 15 | return new \PhpDraft\Domain\Validators\DraftValidator($app); |
16 | 16 | }; |
17 | 17 | |
18 | -$app['phpdraft.RoundTimeValidator'] = function () use ($app) { |
|
18 | +$app['phpdraft.RoundTimeValidator'] = function() use ($app) { |
|
19 | 19 | return new \PhpDraft\Domain\Validators\RoundTimeValidator($app); |
20 | 20 | }; |
21 | 21 | |
22 | -$app['phpdraft.ManagerValidator'] = function () use ($app) { |
|
22 | +$app['phpdraft.ManagerValidator'] = function() use ($app) { |
|
23 | 23 | return new \PhpDraft\Domain\Validators\ManagerValidator($app); |
24 | 24 | }; |
25 | 25 | |
26 | -$app['phpdraft.TradeValidator'] = function () use ($app) { |
|
26 | +$app['phpdraft.TradeValidator'] = function() use ($app) { |
|
27 | 27 | return new \PhpDraft\Domain\Validators\TradeValidator($app); |
28 | 28 | }; |
29 | 29 | |
30 | -$app['phpdraft.PickValidator'] = function () use ($app) { |
|
30 | +$app['phpdraft.PickValidator'] = function() use ($app) { |
|
31 | 31 | return new \PhpDraft\Domain\Validators\PickValidator($app); |
32 | 32 | }; |
33 | 33 | |
34 | -$app['phpdraft.ProPlayerValidator'] = function () use ($app) { |
|
34 | +$app['phpdraft.ProPlayerValidator'] = function() use ($app) { |
|
35 | 35 | return new \PhpDraft\Domain\Validators\ProPlayerValidator($app); |
36 | 36 | }; |
37 | 37 | |
38 | -$app['phpdraft.DepthChartPositionValidator'] = function () use ($app) { |
|
38 | +$app['phpdraft.DepthChartPositionValidator'] = function() use ($app) { |
|
39 | 39 | return new \PhpDraft\Domain\Validators\DepthChartPositionValidator($app); |
40 | 40 | }; |
41 | 41 | \ No newline at end of file |
@@ -16,42 +16,42 @@ |
||
16 | 16 | return new \PhpDraft\Domain\Services\EmailService($app); |
17 | 17 | }; |
18 | 18 | |
19 | -$app['phpdraft.LoginUserService'] = function () use ($app) { |
|
19 | +$app['phpdraft.LoginUserService'] = function() use ($app) { |
|
20 | 20 | return new \PhpDraft\Domain\Services\LoginUserService($app); |
21 | 21 | }; |
22 | 22 | |
23 | -$app['phpdraft.DraftService'] = function () use ($app) { |
|
23 | +$app['phpdraft.DraftService'] = function() use ($app) { |
|
24 | 24 | return new \PhpDraft\Domain\Services\DraftService($app); |
25 | 25 | }; |
26 | 26 | |
27 | -$app['phpdraft.RoundTimeService'] = function () use ($app) { |
|
27 | +$app['phpdraft.RoundTimeService'] = function() use ($app) { |
|
28 | 28 | return new \PhpDraft\Domain\Services\RoundTimeService($app); |
29 | 29 | }; |
30 | 30 | |
31 | -$app['phpdraft.ManagerService'] = function () use ($app) { |
|
31 | +$app['phpdraft.ManagerService'] = function() use ($app) { |
|
32 | 32 | return new \PhpDraft\Domain\Services\ManagerService($app); |
33 | 33 | }; |
34 | 34 | |
35 | -$app['phpdraft.ProPlayerService'] = function () use ($app) { |
|
35 | +$app['phpdraft.ProPlayerService'] = function() use ($app) { |
|
36 | 36 | return new \PhpDraft\Domain\Services\ProPlayerService($app); |
37 | 37 | }; |
38 | 38 | |
39 | -$app['phpdraft.TradeService'] = function () use ($app) { |
|
39 | +$app['phpdraft.TradeService'] = function() use ($app) { |
|
40 | 40 | return new \PhpDraft\Domain\Services\TradeService($app); |
41 | 41 | }; |
42 | 42 | |
43 | -$app['phpdraft.PickService'] = function () use ($app) { |
|
43 | +$app['phpdraft.PickService'] = function() use ($app) { |
|
44 | 44 | return new \PhpDraft\Domain\Services\PickService($app); |
45 | 45 | }; |
46 | 46 | |
47 | -$app['phpdraft.UtilityService'] = function () use ($app) { |
|
47 | +$app['phpdraft.UtilityService'] = function() use ($app) { |
|
48 | 48 | return new \PhpDraft\Domain\Services\UtilityService($app); |
49 | 49 | }; |
50 | 50 | |
51 | -$app['phpdraft.DepthChartPositionService'] = function () use ($app) { |
|
51 | +$app['phpdraft.DepthChartPositionService'] = function() use ($app) { |
|
52 | 52 | return new \PhpDraft\Domain\Services\DepthChartPositionService($app); |
53 | 53 | }; |
54 | 54 | |
55 | -$app['phpdraft.DatabaseCacheService'] = function () use ($app) { |
|
55 | +$app['phpdraft.DatabaseCacheService'] = function() use ($app) { |
|
56 | 56 | return new \PhpDraft\Domain\Services\DatabaseCacheService($app); |
57 | 57 | }; |
58 | 58 | \ No newline at end of file |