From: Raphaƫl Gertz Date: Sun, 10 Sep 2017 17:47:36 +0000 (+0200) Subject: Cleanup and fix empty yaml parameter X-Git-Tag: 0.0.1~20 X-Git-Url: https://git.rapsys.eu/packbundle/commitdiff_plain/ce6527636cb2bc6b7d72253255561d3fd5eee39c Cleanup and fix empty yaml parameter --- diff --git a/Twig/PackExtension.php b/Twig/PackExtension.php index 3b4aa07..e441a47 100644 --- a/Twig/PackExtension.php +++ b/Twig/PackExtension.php @@ -6,8 +6,6 @@ use Symfony\Component\HttpKernel\Config\FileLocator; use Symfony\Component\DependencyInjection\ContainerInterface; class PackExtension extends \Twig_Extension { - #, $prefix = '@RapsysPackBundle/Resources/public/', $cpack = '/usr/local/bin/cpack', $jpack = '/usr/local/bin/jpack' - #$this->kernel = $kernel; public function __construct(FileLocator $fileLocator, ContainerInterface $containerInterface) { //Set file locator $this->fileLocator = $fileLocator; @@ -29,9 +27,11 @@ class PackExtension extends \Twig_Extension { //Load configuration if ($containerInterface->hasParameter('rapsys_pack')) { - foreach($containerInterface->getParameter('rapsys_pack') as $k => $v) { - if (isset($this->$k)) { - $this->$k = $v; + if ($parameters = $containerInterface->getParameter('rapsys_pack')) { + foreach($parameters as $k => $v) { + if (isset($this->$k)) { + $this->$k = $v; + } } } }