blob: be4795d387f89d6bc3c4c4894c32b575834d99ef [file] [log] [blame]
<?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 = []);
}