Completed
Push — master ( cfbca0...20c8dd )
by Andrii
14:34
created
src/config/basis.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
         'singletons' => [
99 99
             \hidev\base\Interpolator::class => [
100 100
             ],
101
-            'Detect VCS' => function () {
101
+            'Detect VCS' => function() {
102 102
                 $detectedVCS = 'git';
103 103
                 return Yii::$app->get($detectedVCS);
104 104
             },
Please login to merge, or discard this patch.
src/base/Starter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
         Yii::setAlias('@runtime', $this->buildRootPath('.hidev/runtime'));
164 164
 
165 165
         $package = $this->goals['package'];
166
-        $alias  = isset($package['namespace']) ? strtr($package['namespace'], '\\', '/') : '';
167
-        if ($alias && !Yii::getAlias('@' . $alias, false)) {
168
-            $srcdir = Yii::getAlias('@root/' . ($package['src'] ?: 'src'));
166
+        $alias = isset($package['namespace']) ? strtr($package['namespace'], '\\', '/') : '';
167
+        if ($alias && !Yii::getAlias('@'.$alias, false)) {
168
+            $srcdir = Yii::getAlias('@root/'.($package['src'] ?: 'src'));
169 169
             Yii::setAlias($alias, $srcdir);
170 170
         }
171 171
         $aliases = $this->goals['aliases'];
@@ -332,6 +332,6 @@  discard block
 block discarded – undo
332 332
 
333 333
     public function buildRootPath($subpath)
334 334
     {
335
-        return $this->getRootDir() . DIRECTORY_SEPARATOR . $subpath;
335
+        return $this->getRootDir().DIRECTORY_SEPARATOR.$subpath;
336 336
     }
337 337
 }
Please login to merge, or discard this patch.