composer package updates
[openemr.git] / vendor / illuminate / contracts / View / Engine.php
blob4d0b268c1df9fdc068d1aa34e7457abcc11ddf54
1 <?php
3 namespace Illuminate\Contracts\View;
5 interface Engine
7 /**
8 * Get the evaluated contents of the view.
10 * @param string $path
11 * @param array $data
12 * @return string
14 public function get($path, array $data = []);