Browse Source

changed calls to has() to use the new proxy method

Fabien Potencier 14 years ago
parent
commit
4c17ce8e5e

+ 1 - 1
src/Symfony/Bundle/PropelBundle/DependencyInjection/PropelExtension.php

@@ -27,7 +27,7 @@ class PropelExtension extends Extension
             $loader->load($this->resources['propel']);
         }
 
-        if (!$container->getParameterBag()->has('propel.path')) {
+        if (!$container->has('propel.path')) {
             if (!isset($config['path'])) {
                 throw new \InvalidArgumentException('The "path" parameter is mandatory.');
             }

+ 2 - 2
src/Symfony/Component/DependencyInjection/Dumper/GraphvizDumper.php

@@ -109,9 +109,9 @@ class GraphvizDumper extends Dumper
         $edges = array();
         foreach ($arguments as $argument) {
             if (is_object($argument) && $argument instanceof Parameter) {
-                $argument = $this->container->getParameterBag()->has($argument) ? $this->container->getParameter($argument) : null;
+                $argument = $this->container->has($argument) ? $this->container->getParameter($argument) : null;
             } elseif (is_string($argument) && preg_match('/^%([^%]+)%$/', $argument, $match)) {
-                $argument = $this->container->getParameterBag()->has($match[1]) ? $this->container->getParameter($match[1]) : null;
+                $argument = $this->container->has($match[1]) ? $this->container->getParameter($match[1]) : null;
             }
 
             if ($argument instanceof Reference) {

+ 1 - 1
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php

@@ -412,7 +412,7 @@ EOF;
 
     public function dumpParameter($name)
     {
-        if ($this->container->isFrozen() && $this->container->getParameterBag()->has($name)) {
+        if ($this->container->isFrozen() && $this->container->has($name)) {
             return $this->dumpValue($this->container->getParameter($name), false);
         }