Passed
Push — master ( 6773bd...a44cc7 )
by Iman
04:18
created
src/helpers/Mailer.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@
 block discarded – undo
47 47
      * @param $template
48 48
      * @param $subject
49 49
      * @param $html
50
-
51 50
      * @return bool
52 51
      */
53 52
     private function putInQueue($config, $template, $subject, $html)
Please login to merge, or discard this patch.
src/controllers/ApiController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      * @param $name
75 75
      * @return mixed
76 76
      */
77
-   /* private function handleBase64($value, $uploads_format_candidate, $row_assign, $name)
77
+    /* private function handleBase64($value, $uploads_format_candidate, $row_assign, $name)
78 78
     {
79 79
         $filedata = base64_decode($value);
80 80
         $f = finfo_open();
Please login to merge, or discard this patch.
src/commands/CrudboosterInstallationCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -59,15 +59,15 @@
 block discarded – undo
59 59
         $this->symlinkForAsset();
60 60
       
61 61
 
62
-		if($this->confirm('Do you have setting the database configuration at .env ?')) {
62
+        if($this->confirm('Do you have setting the database configuration at .env ?')) {
63 63
             $this->installCrudbooster();
64
-		}else{
65
-			$this->info('Setup Aborted !');
66
-			$this->info('Please setting the database configuration for first !');
67
-		}
64
+        }else{
65
+            $this->info('Setup Aborted !');
66
+            $this->info('Please setting the database configuration for first !');
67
+        }
68 68
 
69 69
         $printer->printFooter();
70
-	}
70
+    }
71 71
 
72 72
     /**
73 73
      * Get the composer command for the environment.
Please login to merge, or discard this patch.
src/helpers/DbInspector.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     {
45 45
         $colObj = \DB::getDoctrineSchemaManager()->listTableColumns($table)[$colName];
46 46
         if(!$colObj){
47
-           return ;
47
+            return ;
48 48
         }
49 49
         return !$colObj->getNotnull();
50 50
     }
Please login to merge, or discard this patch.