| 1 | <?php |
||
| 7 | class Application extends Container |
||
| 8 | { |
||
| 9 | const NAME = "Wandu"; |
||
| 10 | const VERSION = "4.0-dev"; |
||
| 11 | |||
| 12 | /** @var \Wandu\Foundation\Contracts\Bootstrap */ |
||
| 13 | protected $bootstrapper; |
||
| 14 | |||
| 15 | 7 | public function __construct(Bootstrap $bootstrapper) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | 7 | public function boot() |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @return mixed |
||
| 38 | */ |
||
| 39 | 2 | public function execute() |
|
| 44 | } |
||
| 45 |