|
1
|
<?php |
|
2
|
|
|
3
|
namespace IAWPSCOPED\Illuminate\Contracts\View; |
|
4
|
|
|
5
|
/** @internal */ |
|
6
|
interface Engine |
|
7
|
{ |
|
8
|
/** |
|
9
|
* Get the evaluated contents of the view.
|
|
10
|
*
|
|
11
|
* @param string $path
|
|
12
|
* @param array $data
|
|
13
|
* @return string |
|
14
|
*/ |
|
15
|
public function get($path, array $data = []); |
|
16
|
} |
|
17
|
|