@@ -84,7 +84,7 @@ |
||
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 | } |
@@ -20,7 +20,7 @@ |
||
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 | } |
@@ -60,7 +60,7 @@ |
||
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 |