Completed
Push — master ( dfd004...b46837 )
by Jitendra
11s
created
src/Util/Executable.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
         $self = $this;
61 61
         $proc = new Process($this->binary . ' ' . $command, $this->workDir, null, null, null);
62 62
 
63
-        $proc->run(!$this->output ? null : function ($type, $buffer) use ($self) {
63
+        $proc->run(!$this->output ? null : function($type, $buffer) use ($self) {
64 64
             $self->output->write($buffer);
65 65
         });
66 66
 
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
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $finder    = new Finder;
62 62
         $templates = [];
63 63
 
64
-        $finder->files()->ignoreDotFiles(false)->filter(function ($file) {
64
+        $finder->files()->ignoreDotFiles(false)->filter(function($file) {
65 65
             return \substr($file, -5) === '.twig';
66 66
         });
67 67
 
Please login to merge, or discard this patch.