Passed
Push — master ( 2b2e4b...fa1261 )
by Jitendra
01:31
created
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.