Sfoglia il codice sorgente

[FrameworkBundle] fixed merge problem

Fabien Potencier 14 anni fa
parent
commit
82a5ae669e
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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' : '');
     }