@@ -100,7 +100,7 @@ discard block |
||
| 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 |
||
| 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 | |