We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60ffe2d commit c79d340Copy full SHA for c79d340
src/Symfony/Component/HttpKernel/Kernel.php
@@ -632,7 +632,7 @@ protected function getKernelParameters()
632
*/
633
protected function buildContainer()
634
{
635
- foreach (['cache' => $this->getCacheDir(), 'build' => $this->warmupDir ?: $this->getBuildDir(), 'logs' => $this->getLogDir()] as $name => $dir) {
+ foreach (['cache' => $this->getCacheDir(), 'build' => $this->warmupDir ?: $this->getBuildDir()] as $name => $dir) {
636
if (!is_dir($dir)) {
637
if (false === @mkdir($dir, 0777, true) && !is_dir($dir)) {
638
throw new \RuntimeException(sprintf('Unable to create the "%s" directory (%s).', $name, $dir));
0 commit comments