@@ -3,7 +3,7 @@ |
||
3 | 3 | $container = new League\Container\Container; |
4 | 4 | |
5 | 5 | // Register the request object singleton to be used later in the request cyncle |
6 | -$container->singleton('Symfony\Component\HttpFoundation\Request', function () { |
|
6 | +$container->singleton('Symfony\Component\HttpFoundation\Request', function() { |
|
7 | 7 | return Symfony\Component\HttpFoundation\Request::createFromGlobals(); |
8 | 8 | }); |
9 | 9 |
@@ -32,13 +32,13 @@ |
||
32 | 32 | ]; |
33 | 33 | |
34 | 34 | // Register the singleton with the container |
35 | - $this->getContainer()->singleton('Twig_Environment', function () use ($globals, $config) { |
|
35 | + $this->getContainer()->singleton('Twig_Environment', function() use ($globals, $config) { |
|
36 | 36 | |
37 | 37 | $cache = false; |
38 | 38 | $debug = true; |
39 | 39 | |
40 | 40 | if ($config['environment'] === "production" || $config['environment'] === "staging") { |
41 | - $cache = __DIR__ .'/../../cache'; |
|
41 | + $cache = __DIR__ . '/../../cache'; |
|
42 | 42 | $debug = false; |
43 | 43 | } |
44 | 44 |
@@ -19,7 +19,7 @@ |
||
19 | 19 | */ |
20 | 20 | public function register() |
21 | 21 | { |
22 | - $this->getContainer()->singleton('Aura\Sql', function () { |
|
22 | + $this->getContainer()->singleton('Aura\Sql', function() { |
|
23 | 23 | $config = $this->getContainer()->get('config')['database']; |
24 | 24 | |
25 | 25 | $pdo = new ExtendedPdo( |
@@ -18,7 +18,7 @@ |
||
18 | 18 | */ |
19 | 19 | public function register() |
20 | 20 | { |
21 | - $this->getContainer()->singleton('config', function () { |
|
21 | + $this->getContainer()->singleton('config', function() { |
|
22 | 22 | return include __DIR__ . '/../../config/config.php'; |
23 | 23 | }); |
24 | 24 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | */ |
24 | 24 | public function register() |
25 | 25 | { |
26 | - $this->getContainer()->singleton('redis', function () { |
|
26 | + $this->getContainer()->singleton('redis', function() { |
|
27 | 27 | $redisConfig = $this->getContainer()->get('config')['redis']; |
28 | 28 | |
29 | 29 | $client = new Client([ |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | { |
26 | 26 | $redisKey = "{$this->getCacheNamespace()}{$id}:{$this->getType()}"; |
27 | 27 | |
28 | - if (! empty($this->getMetrics())) { |
|
28 | + if (!empty($this->getMetrics())) { |
|
29 | 29 | foreach ($this->getMetrics() as $metric) { |
30 | 30 | $redisKey .= ":{$metric['col']}{$op}{$metric['value']}"; |
31 | 31 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | 'value' => $id |
42 | 42 | ]); |
43 | 43 | |
44 | - if (! empty($this->getMetrics())) { |
|
44 | + if (!empty($this->getMetrics())) { |
|
45 | 45 | foreach ($this->getMetrics() as $metric) { |
46 | 46 | $op = (isset($metric['op']) ? $metric['op'] : '='); |
47 | 47 | $queryObject->addWhere([ |
@@ -65,10 +65,10 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function setMetrics($metric) |
67 | 67 | { |
68 | - if (! empty($metric)) { |
|
68 | + if (!empty($metric)) { |
|
69 | 69 | // Don't allow setting if the proper data isn't there. |
70 | 70 | // Prevents and kind of errors later on. |
71 | - if (! empty($metric['col']) && ! empty($metric['value'])) { |
|
71 | + if (!empty($metric['col']) && !empty($metric['value'])) { |
|
72 | 72 | $this->metrics[] = $metric; |
73 | 73 | } |
74 | 74 | } |
@@ -32,10 +32,10 @@ discard block |
||
32 | 32 | $queryObject = new QueryObject; |
33 | 33 | |
34 | 34 | // Build based on metric alone (order by playerKills for example) |
35 | - if (! empty($post['metric'] && empty($post['value'])) |
|
35 | + if (!empty($post['metric'] && empty($post['value'])) |
|
36 | 36 | && $this->validatePostVars('metric', $post['metric']) === true |
37 | 37 | ) { |
38 | - $direction = (! empty($post['direction']) ? $post['direction'] : 'desc'); |
|
38 | + $direction = (!empty($post['direction']) ? $post['direction'] : 'desc'); |
|
39 | 39 | |
40 | 40 | $queryObject->setOrderBy($post['metric']); |
41 | 41 | $queryObject->setOrderByDirection($direction); |
@@ -44,11 +44,11 @@ discard block |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | // Build based on metric and a value (such as order by playerKills by server) |
47 | - if (! empty($post['value']) |
|
48 | - && ! empty($post['metric']) |
|
47 | + if (!empty($post['value']) |
|
48 | + && !empty($post['metric']) |
|
49 | 49 | && $this->validatePostVars('metric', $post['metric']) === true |
50 | 50 | ) { |
51 | - $op = (! empty($post['operator']) ? $post['operator'] : '='); |
|
51 | + $op = (!empty($post['operator']) ? $post['operator'] : '='); |
|
52 | 52 | |
53 | 53 | $queryObject->addWhere([ |
54 | 54 | 'col' => $post['metric'], |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | 'value' => $post['value'] |
57 | 57 | ]); |
58 | 58 | |
59 | - $direction = (! empty($post['direction']) ? $post['direction'] : 'desc'); |
|
59 | + $direction = (!empty($post['direction']) ? $post['direction'] : 'desc'); |
|
60 | 60 | |
61 | 61 | $queryObject->setOrderBy($post['metric']); |
62 | 62 | $queryObject->setOrderByDirection($direction); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $redisKey .= ":{$post['metric']}{$op}{$post['value']}-{$direction}"; |
65 | 65 | } |
66 | 66 | |
67 | - if (! empty($post['limit'])) { |
|
67 | + if (!empty($post['limit'])) { |
|
68 | 68 | $post['limit'] = intval($post['limit']); |
69 | 69 | |
70 | 70 | // Hard encode a 50 limit |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | public function validatePostVars($field, $value) |
95 | 95 | { |
96 | - if ($field === 'metric' && ! empty($value)) { |
|
96 | + if ($field === 'metric' && !empty($value)) { |
|
97 | 97 | switch ($value) { |
98 | 98 | case 'playerKills': |
99 | 99 | case 'playerDeaths': |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | 'value' => date('U', strtotime('-48 hours')) |
42 | 42 | ]); |
43 | 43 | |
44 | - if (! empty($args['serverID'])) { |
|
44 | + if (!empty($args['serverID'])) { |
|
45 | 45 | $redisKey .= ":{$args['serverID']}"; |
46 | 46 | $queryObject->addWhere([ |
47 | 47 | 'col' => 'ResultServer', |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | ]); |
50 | 50 | } |
51 | 51 | |
52 | - if (! empty($args['limit'])) { |
|
52 | + if (!empty($args['limit'])) { |
|
53 | 53 | if ($args['limit'] > 50) { |
54 | 54 | $args['limit'] = 50; |
55 | 55 | } |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | 'value' => 1 |
82 | 82 | ]); |
83 | 83 | |
84 | - if (! empty($args['serverID'])) { |
|
84 | + if (!empty($args['serverID'])) { |
|
85 | 85 | $queryObject->addWhere([ |
86 | 86 | 'col' => 'ResultServer', |
87 | 87 | 'value' => $args['serverID'] |
@@ -20,7 +20,7 @@ |
||
20 | 20 | */ |
21 | 21 | public function register() |
22 | 22 | { |
23 | - $this->getContainer()->singleton('Monolog\Logger', function () { |
|
23 | + $this->getContainer()->singleton('Monolog\Logger', function() { |
|
24 | 24 | $log = new Logger('app'); |
25 | 25 | $log->pushHandler( |
26 | 26 | new StreamHandler(__DIR__ . '/../../logs/app.log', Logger::DEBUG) |