Passed
Push — master ( 4862c9...74cda5 )
by Brent
02:52
created
src/Command/InstallCommand.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -104,6 +104,9 @@
 block discarded – undo
104 104
         }
105 105
     }
106 106
 
107
+    /**
108
+     * @param string $dst
109
+     */
107 110
     protected function copyFolder($src, $dst) {
108 111
         $finder = new Finder();
109 112
         $srcFiles = $finder->files()->in($src)->ignoreDotFiles(false);
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Component\Console\Command\Command;
6 6
 use Symfony\Component\Console\Input\InputInterface;
7
-use Symfony\Component\Console\Input\InputOption;
8 7
 use Symfony\Component\Console\Output\OutputInterface;
9 8
 use Symfony\Component\Filesystem\Filesystem;
10 9
 use Symfony\Component\Console\Question\Question;
Please login to merge, or discard this patch.
src/Template/Twig/TwigEngine.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@
 block discarded – undo
36 36
         /** @var TemplatePlugin $plugin */
37 37
         $plugin = Config::getDependency('engine.plugin');
38 38
 
39
-        $this->addFunction(new \Twig_SimpleFunction('meta', [$plugin, 'meta'], ['is_safe' => ['html'],]));
40
-        $this->addFunction(new \Twig_SimpleFunction('css', [$plugin, 'css'], ['is_safe' => ['html'],]));
41
-        $this->addFunction(new \Twig_SimpleFunction('js', [$plugin, 'js'], ['is_safe' => ['html'],]));
39
+        $this->addFunction(new \Twig_SimpleFunction('meta', [$plugin, 'meta'], ['is_safe' => ['html'], ]));
40
+        $this->addFunction(new \Twig_SimpleFunction('css', [$plugin, 'css'], ['is_safe' => ['html'], ]));
41
+        $this->addFunction(new \Twig_SimpleFunction('js', [$plugin, 'js'], ['is_safe' => ['html'], ]));
42 42
         $this->addFunction(new \Twig_SimpleFunction('image', [$plugin, 'image']));
43 43
     }
44 44
 
Please login to merge, or discard this patch.