Passed
Branch master (6a7ae3)
by Jitendra
02:27
created
src/Util/Git.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
         $proc->run();
85 85
 
86 86
         if ($proc->isSuccessful()) {
87
-           return $proc->getOutput();
87
+            return $proc->getOutput();
88 88
         }
89 89
     }
90 90
 }
Please login to merge, or discard this patch.
src/Console/BaseCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         $helper   = $this->getHelper('question');
21 21
         $question = new Question($prompt, $default);
22 22
 
23
-        $question->setValidator($validator ?: function ($value) {
23
+        $question->setValidator($validator ?: function($value) {
24 24
             if (empty($value)) {
25 25
                 throw new \InvalidArgumentException('Please provide non empty value');
26 26
             }
Please login to merge, or discard this patch.
src/Generator/TwigGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $finder    = new Finder;
61 61
         $templates = [];
62 62
 
63
-        $finder->files()->ignoreDotFiles(false)->filter(function ($file) {
63
+        $finder->files()->ignoreDotFiles(false)->filter(function($file) {
64 64
             return substr($file, -5) === '.twig';
65 65
         });
66 66
 
Please login to merge, or discard this patch.