Explorar el Código

[FrameworkBundle] fixed merge problem

Fabien Potencier hace 14 años
padre
commit
82a5ae669e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Symfony/Component/HttpKernel/Kernel.php

+ 1 - 1
src/Symfony/Component/HttpKernel/Kernel.php

@@ -414,7 +414,7 @@ abstract class Kernel implements KernelInterface
      *
      * @return string The container class
      */
-    protected function getContainerClass()
+    public function getContainerClass()
     {
         return $this->name.ucfirst($this->environment).($this->debug ? 'Debug' : '').'ProjectContainer'.($this->cacheDir ? 'Tmp' : '');
     }