Fatal Error: File 'sitemap.xml' does not exist!

Find on line 46 in file /home/alexandrov/domains/expansa.org/public_html/expansa/View/Factory.php

$this->share('__env', $this);
    }

    public function make(string $view, array $data = []): View
    {
        $file = $this->finder->find($view);

        if ($file === null) {
            throw new ViewException("File '$view' does not exist!");
        }

        $data = array_merge($this->shared, $data);

        return new View($this, $this->getEngine($file), $view, $file['path'], $data);
    }

    public function getEngine(array $file): Engine
    {
        $engine = $this->engine->resolveByExtension($file['extension']);

        $engine->setFactory($this);
        $engine->setCache($this->cache, $this->cachePath);

        return $engine;
    }

    public function share(string|array $key, mixed $value = null): void
    {
        if (is_array($key)) {