@@ -17,7 +17,7 @@ discard block |
||
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 |
||
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 | }, |
@@ -39,7 +39,7 @@ |
||
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() |