Passed
Push — main ( 57fd05...2c37f6 )
by Sammy
01:14
created
FileSystem.class.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
 
20 20
   public function filenames($regex=null) : array
21 21
   {
22
-		if(!file_exists($this->root_path) && mkdir($this->root_path) === false)
23
-			return [];
22
+    if(!file_exists($this->root_path) && mkdir($this->root_path) === false)
23
+      return [];
24 24
 
25 25
     $filenames = self::preg_scandir($this->root_path, $regex);// ID_SEQUENCENUMBER.ext
26 26
     if(!is_null($filenames))
Please login to merge, or discard this patch.
Text/CSV.class.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
 
30 30
 
31 31
 */
32
-	function array()
33
-	{
34
-		return array_map('str_getcsv', parent::array());
35
-	}
32
+  function array()
33
+  {
34
+    return array_map('str_getcsv', parent::array());
35
+  }
36 36
 
37 37
 
38 38
 }
Please login to merge, or discard this patch.