protected function initializeContainer() { /** @var class-string<Container> $class */
$class =
$this->
getContainerClass();
$cache =
new ConfigCache( $this->config
['hook'
]['proxyDir'
] . '/' .
$class . '.php',
true // always check for file modified time
);
if (!
$cache->
isFresh()) { $container =
$this->
buildContainer();
$container->
compile();
$this->
dumpContainer($cache,
$container,
$class, Container::
class);
}