Completed
Pull Request — master (#9)
by Jitendra
01:58
created
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.
src/Console/InitCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@
 block discarded – undo
236 236
 
237 237
     protected function collectPackages()
238 238
     {
239
-        $fn = function ($pkg) {
239
+        $fn = function($pkg) {
240 240
             if (!empty($pkg) && strpos($pkg, '/') === false) {
241 241
                 throw new \InvalidArgumentException(
242 242
                     'Package name format should be vendor/package:version (version can be omitted)'
Please login to merge, or discard this patch.