container = $container; } public function all() { return $this->container->getParameterBag()->all(); } public function get(string $name) { return $this->container->getParameter($name); } public function has(string $name) { return $this->container->hasParameter($name); } }