Files
money/vendor/illuminate/view/Engines/FileEngine.php

21 lines
373 B
PHP
Raw Normal View History

2023-06-16 02:08:47 +00:00
<?php
namespace Illuminate\View\Engines;
use Illuminate\Contracts\View\Engine;
class FileEngine implements Engine
{
/**
* Get the evaluated contents of the view.
*
* @param string $path
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
return file_get_contents($path);
}
}