Completed
Push — master ( 5e6003...ff6361 )
by Matthew
03:07
created
src/ServiceProvider/DatabaseServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function register()
21 21
     {
22
-        $this->getContainer()->singleton('Database', function () {
22
+        $this->getContainer()->singleton('Database', function() {
23 23
             $config = $this->getContainer()->get('config')['database'];
24 24
 
25 25
             $pdo = new ExtendedPdo(
Please login to merge, or discard this patch.
src/ServiceProvider/DatabaseDataServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function register()
21 21
     {
22
-        $this->getContainer()->singleton('Database\Data', function () {
22
+        $this->getContainer()->singleton('Database\Data', function() {
23 23
             $config = $this->getContainer()->get('config')['database_data'];
24 24
 
25 25
             $pdo = new ExtendedPdo(
Please login to merge, or discard this patch.
config/config.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         'host'    => $_ENV['REDIS_HOST'],
25 25
         'db'      => $_ENV['REDIS_DB']
26 26
     ],
27
-    'factions' => ['vs','nc','tr','draw'],
28
-    'servers'  => [1,10,13,17,25,1000,2000],
29
-    'zones'    => [2,4,6,8]
27
+    'factions' => ['vs', 'nc', 'tr', 'draw'],
28
+    'servers'  => [1, 10, 13, 17, 25, 1000, 2000],
29
+    'zones'    => [2, 4, 6, 8]
30 30
 ];
Please login to merge, or discard this patch.