[HttpKernel] release lock explicitly

This commit is contained in:
Nicolas Grekas 2020-01-07 11:19:31 +01:00
parent b9a0b33540
commit 6fb55812ab
1 changed files with 2 additions and 2 deletions

View File

@ -556,7 +556,7 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
}
}
public function __destruct()
public function release()
{
flock($this->lock, LOCK_UN);
fclose($this->lock);
@ -634,7 +634,7 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
}
$this->dumpContainer($cache, $container, $class, $this->getContainerBaseClass());
unset($cache);
$cache->release();
$this->container = require $cachePath;
$this->container->set('kernel', $this);