Files
money/vendor/illuminate/contracts/View/Engine.php
2023-06-16 02:08:47 +00:00

16 lines
266 B
PHP
Executable File

<?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 = []);
}