Completed
Push — erdiko2 ( bf6b63...3ffb35 )
by John
02:05
created
src/App.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function __construct($container = null)
25 25
     {
26
-        if($container === null) {
26
+        if ($container === null) {
27 27
             $container = require getenv("ERDIKO_ROOT")."/bootstrap/settings.php";
28 28
         }
29 29
         parent::__construct($container);
Please login to merge, or discard this patch.
bootstrap.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
 }
18 18
 
19 19
 require_once 'src/autoload.php';
20
-require_once getenv('ERDIKO_ROOT') . '/vendor/autoload.php';
20
+require_once getenv('ERDIKO_ROOT').'/vendor/autoload.php';
21 21
 
22 22
 // Set a default context if none specified
23
-if(empty(getenv('ERDIKO_CONTEXT')))
23
+if (empty(getenv('ERDIKO_CONTEXT')))
24 24
         putenv("ERDIKO_CONTEXT=default");
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,5 +20,6 @@
 block discarded – undo
20 20
 require_once getenv('ERDIKO_ROOT') . '/vendor/autoload.php';
21 21
 
22 22
 // Set a default context if none specified
23
-if(empty(getenv('ERDIKO_CONTEXT')))
23
+if(empty(getenv('ERDIKO_CONTEXT'))) {
24 24
         putenv("ERDIKO_CONTEXT=default");
25
+}
Please login to merge, or discard this patch.