| 1 | <?php |
||
| 11 | class ApplicationHook extends LaravelApplication implements ApplicationInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var \Illuminate\Contracts\Foundation\Application |
||
| 15 | */ |
||
| 16 | private $app; |
||
| 17 | |||
| 18 | 6 | public function __construct(ApplicationInterface $app) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * An array of the types that have been resolved. |
||
| 25 | * |
||
| 26 | * @return array |
||
| 27 | */ |
||
| 28 | 1 | public function getResolved() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * The container's bindings. |
||
| 35 | * |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | 2 | public function getBindings() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * The container's shared instances. |
||
| 45 | * |
||
| 46 | * @return array |
||
| 47 | */ |
||
| 48 | 2 | public function getInstances() |
|
| 52 | |||
| 53 | /** |
||
| 54 | * The registered type aliases. |
||
| 55 | * |
||
| 56 | * @return array |
||
| 57 | */ |
||
| 58 | 2 | public function getAliases() |
|
| 62 | |||
| 63 | /** |
||
| 64 | * All of the registered tags. |
||
| 65 | * |
||
| 66 | * @return array |
||
| 67 | */ |
||
| 68 | 1 | public function getTags() |
|
| 72 | } |
||
| 73 |