| 1 | <?php |
||
| 13 | class Illuminate implements MenuRender |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var Container |
||
| 17 | */ |
||
| 18 | protected $container; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var Factory |
||
| 22 | */ |
||
| 23 | protected $factory; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var View |
||
| 27 | */ |
||
| 28 | protected $view = null; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @inheritDoc |
||
| 32 | */ |
||
| 33 | 3 | public function __construct(Container $container) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @inheritDoc |
||
| 41 | */ |
||
| 42 | 3 | public function make($view) |
|
| 52 | |||
| 53 | /** |
||
| 54 | * @inheritDoc |
||
| 55 | */ |
||
| 56 | 2 | public function with($params, $value = null) |
|
| 64 | |||
| 65 | /** |
||
| 66 | * @inheritDoc |
||
| 67 | */ |
||
| 68 | 2 | public function render() |
|
| 76 | |||
| 77 | /** |
||
| 78 | * Determine if a given view exists. |
||
| 79 | * |
||
| 80 | * @param string $view |
||
| 81 | * @return bool |
||
| 82 | */ |
||
| 83 | 3 | public function exists($view) |
|
| 87 | } |