phpbb\di\container_builder::get_container_filename PHP Method

get_container_filename() protected method

Get the filename under which the dumped container will be stored.
protected get_container_filename ( ) : string
return string Path for dumped container
    protected function get_container_filename()
    {
        $filename = str_replace(array('/', '.'), array('slash', 'dot'), $this->phpbb_root_path);
        return $this->get_cache_dir() . 'container_' . $filename . '.' . $this->php_ext;
    }