Completed
Push — master ( 59bbea...24d81b )
by Andrii
03:25
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/controllers/StartController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     protected function findDir()
79 79
     {
80 80
         $configDir = '.hidev';
81
-        for ($i = 0;$i < 9;++$i) {
81
+        for ($i = 0; $i < 9; ++$i) {
82 82
             if (is_dir($configDir)) {
83 83
                 return getcwd();
84 84
             }
Please login to merge, or discard this patch.
src/controllers/FileController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
  */
22 22
 class FileController extends CollectionController
23 23
 {
24
-    protected $_make   = ['load', 'save', 'modify'];
24
+    protected $_make = ['load', 'save', 'modify'];
25 25
 
26 26
     /**
27 27
      * @var string specifies handler to be used
Please login to merge, or discard this patch.