| 1 | <?php |
||
| 10 | class PhpEngine extends \Illuminate\View\Engines\PhpEngine |
||
| 11 | { |
||
| 12 | use CollectsViewExceptions; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Get the evaluated contents of the view. |
||
| 16 | * |
||
| 17 | * @param string $path |
||
| 18 | * @param array $data |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | public function get($path, array $data = []) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Handle a view exception. |
||
| 30 | * |
||
| 31 | * @param \Exception $baseException |
||
| 32 | * @param int $obLevel |
||
| 33 | * |
||
| 34 | * @return void |
||
| 35 | * |
||
| 36 | * @throws \Exception |
||
| 37 | */ |
||
| 38 | protected function handleViewException(Throwable $baseException, $obLevel) |
||
| 47 | } |
||
| 48 |