PATH:
home
/
centosnipponia
/
public_html
/
apptt
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
View
/
Engines
<?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); } }
[+]
..
[-] CompilerEngine.php
[edit]
[-] Engine.php
[edit]
[-] EngineResolver.php
[edit]
[-] FileEngine.php
[edit]
[-] PhpEngine.php
[edit]
[-] .htaccess.disabled
[edit]