Passed
Push — master ( 96f4d9...bac7ba )
by Koldo
06:31
created
src/PugTemplateRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
         return $this->pug->render(
65 65
             sprintf(
66 66
                 '%s.%s',
67
-                $this->path . str_replace('::', '/', $name),
67
+                $this->path.str_replace('::', '/', $name),
68 68
                 $this->config['extension']
69 69
             ),
70 70
             array_merge_recursive($this->globals, $params)
Please login to merge, or discard this patch.
src/Container/PugFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     private function addOns(Pug $pug, ContainerInterface $container, array $config)
34 34
     {
35 35
         foreach (self::AVAILABLE_ADD_ONS as $method => $type) {
36
-            array_walk($config[$type], function ($callable, $name) use ($method, $pug, $container) {
36
+            array_walk($config[$type], function($callable, $name) use ($method, $pug, $container) {
37 37
                 $pug->{$method}($name, is_callable($callable) ? $callable : $container->get($callable));
38 38
             });
39 39
         }
Please login to merge, or discard this patch.