| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function __construct( |
||
| 32 | HttpCacheInterface $httpCache, |
||
| 33 | RouterInterface $router, |
||
| 34 | TransferInterface $responder, |
||
| 35 | ResourceInterface $resource, |
||
| 36 | ThrowableHandlerInterface $throwableHandler |
||
| 37 | ) { |
||
| 38 | $this->httpCache = $httpCache; |
||
| 39 | $this->router = $router; |
||
| 40 | $this->responder = $responder; |
||
| 41 | $this->resource = $resource; |
||
| 42 | $this->throwableHandler = $throwableHandler; |
||
| 43 | } |
||
| 44 | } |
||
| 45 |