@@ -64,7 +64,7 @@ |
||
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) |
@@ -33,7 +33,7 @@ |
||
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 | } |