PHP 8.3.31
Preview: FileEngine.php Size: 771 B
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/View/Engines/FileEngine.php

<?php

namespace Illuminate\View\Engines;

use Illuminate\Contracts\View\Engine;
use Illuminate\Filesystem\Filesystem;

class FileEngine implements Engine
{
    /**
     * The filesystem instance.
     *
     * @var \Illuminate\Filesystem\Filesystem
     */
    protected $files;

    /**
     * Create a new file engine instance.
     *
     * @param  \Illuminate\Filesystem\Filesystem  $files
     * @return void
     */
    public function __construct(Filesystem $files)
    {
        $this->files = $files;
    }

    /**
     * Get the evaluated contents of the view.
     *
     * @param  string  $path
     * @param  array  $data
     * @return string
     */
    public function get($path, array $data = [])
    {
        return $this->files->get($path);
    }
}

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
4.15 KB lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
362 B lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
1.44 KB lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
771 B lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
1.84 KB lrw-rw-rw- 2025-09-17 06:52:56
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).