| 1 | <?php |
||
| 9 | class Kernel |
||
| 10 | { |
||
| 11 | private $container; |
||
| 12 | |||
| 13 | public function __construct(Container $container) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Resolve from container. |
||
| 20 | * |
||
| 21 | * @param string $class |
||
| 22 | * |
||
| 23 | * @return mixed |
||
| 24 | * @throws \Psr\Container\ContainerExceptionInterface |
||
| 25 | */ |
||
| 26 | public function resolve(string $class) |
||
| 30 | } |
||
| 31 |