| 1 | <?php |
||
| 14 | final class App implements AppInterface |
||
| 15 | { |
||
| 16 | /** @var HttpCacheInterface */ |
||
| 17 | public $httpCache; |
||
| 18 | |||
| 19 | /** @var RouterInterface */ |
||
| 20 | public $router; |
||
| 21 | |||
| 22 | /** @var TransferInterface */ |
||
| 23 | public $responder; |
||
| 24 | |||
| 25 | /** @var ResourceInterface */ |
||
| 26 | public $resource; |
||
| 27 | |||
| 28 | /** @var ThrowableHandlerInterface */ |
||
| 29 | public $throwableHandler; |
||
| 30 | |||
| 31 | public function __construct( |
||
| 44 | } |
||
| 45 |