Completed
Push — master ( 22637e...da3731 )
by Andrii
15:10
created
src/base/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      */
90 90
     protected static $_extension2type = [
91 91
         'json'      => 'json',
92
-        'yml'       => 'yaml',  /// first one is preferred
92
+        'yml'       => 'yaml', /// first one is preferred
93 93
         'yaml'      => 'yaml',
94 94
         'xml'       => 'xml',
95 95
         'xml.dist'  => 'xml',
Please login to merge, or discard this patch.
src/goals/GitHubGoal.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
     public function setName($value)
20 20
     {
21 21
         list($vendor, $package) = explode('/', $value, 2);
22
-        $this->setItem('name',    $value);
23
-        $this->setItem('vendor',  $vendor ?: $package);
22
+        $this->setItem('name', $value);
23
+        $this->setItem('vendor', $vendor ?: $package);
24 24
         $this->setItem('package', $package ?: $vendor);
25 25
     }
26 26
 
Please login to merge, or discard this patch.
src/goals/StartGoal.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     {
60 60
         $configDir = '.hidev';
61 61
         if (!$isInit) {
62
-            for ($i = 0;$i < 9;++$i) {
62
+            for ($i = 0; $i < 9; ++$i) {
63 63
                 if (is_dir($configDir)) {
64 64
                     return getcwd();
65 65
                 }
Please login to merge, or discard this patch.