Skip to content
Permalink
8.x
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 15 lines (13 sloc) 265 Bytes
<?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 = []);
}