Completed
Push — master ( aaa1c3...0d77de )
by Andrii
14:42
created
src/config/basis.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     'name'                  => 'HiDev',
18 18
     'basePath'              => dirname(__DIR__),
19 19
     'vendorPath'            => HIDEV_VENDOR_DIR,
20
-    'runtimePath'           => substr(__DIR__, 0, 7) === 'phar://' ? dirname($_SERVER['SCRIPT_NAME']) : dirname(HIDEV_VENDOR_DIR) . '/runtime',
20
+    'runtimePath'           => substr(__DIR__, 0, 7) === 'phar://' ? dirname($_SERVER['SCRIPT_NAME']) : dirname(HIDEV_VENDOR_DIR).'/runtime',
21 21
     'controllerNamespace'   => 'hidev\\controllers',
22 22
     'defaultRoute'          => 'default',
23 23
     'bootstrap'             => ['log'],
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         'singletons' => [
98 98
             \hidev\base\Interpolator::class => [
99 99
             ],
100
-            'Detect VCS' => function () {
100
+            'Detect VCS' => function() {
101 101
                 $detectedVCS = 'git';
102 102
                 return Yii::$app->get($detectedVCS);
103 103
             },
Please login to merge, or discard this patch.
src/log/ConsoleTarget.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         if ($style) {
40 40
             $message = Console::ansiFormat($message, $style);
41 41
         }
42
-        Console::stdout($message . "\n");
42
+        Console::stdout($message."\n");
43 43
     }
44 44
 
45 45
     public function getLevel()
Please login to merge, or discard this patch.