Completed
Pull Request — master (#20)
by Jitendra
03:01
created
src/Generator/TwigGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             $options
101 101
         );
102 102
 
103
-        $this->twig->addFilter(new \Twig_SimpleFilter('snake', function ($x) {
103
+        $this->twig->addFilter(new \Twig_SimpleFilter('snake', function($x) {
104 104
             return $this->inflector->snakeCase($x);
105 105
         }));
106 106
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         $templates = [];
111 111
         $finder    = new Finder;
112 112
 
113
-        $finder->files()->ignoreDotFiles(false)->filter(function ($file) {
113
+        $finder->files()->ignoreDotFiles(false)->filter(function($file) {
114 114
             return \substr($file, -5) === '.twig';
115 115
         });
116 116
 
Please login to merge, or discard this patch.