D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
View
/
Engines
/
Filename :
FileEngine.php
back
Copy
<?php namespace Illuminate\View\Engines; class FileEngine implements EngineInterface { /** * 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); } }