Completed
Push — master ( 1768c8...189bb6 )
by Matthew
03:41
created
src/ServiceProvider/LogServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Loader/Statistics/AlertStatisticsLoader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,9 +88,9 @@
 block discarded – undo
88 88
             return $this->getFromRedis($masterRedisKey);
89 89
         }
90 90
 
91
-        $servers  = [1,10,13,17,25,1000,2000];
92
-        $zones    = [2,4,6,8];
93
-        $factions = ['vs','nc','tr','draw'];
91
+        $servers  = [1, 10, 13, 17, 25, 1000, 2000];
92
+        $zones    = [2, 4, 6, 8];
93
+        $factions = ['vs', 'nc', 'tr', 'draw'];
94 94
 
95 95
         $results = [];
96 96
         $this->setCacheExpireTime(3600); // 1 Hour
Please login to merge, or discard this patch.