DIR: /proc/self/root/home/lapieza/vendor/illuminate/contracts/View/ |
Current File : //proc/self/root/home/lapieza/vendor/illuminate/contracts/View/Engine.php |
<?php namespace Illuminate\Contracts\View; interface Engine { /** * Get the evaluated contents of the view. * * @param string $path * @param array $data * @return string */ public function get($path, array $data = []); } |