| 1 | <?php |
||
| 12 | class FailoverOnMissContainer extends AbstractContainerDecorator |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ContainerInterface |
||
| 16 | */ |
||
| 17 | private $failoverContainer; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param ContainerInterface $container The container being decorated |
||
| 21 | * @param ContainerInterface $failoverContainer The container to act as a failover |
||
| 22 | */ |
||
| 23 | 1 | public function __construct(ContainerInterface $container, ContainerInterface $failoverContainer) |
|
| 28 | |||
| 29 | 1 | public function get($id) |
|
| 37 | } |
||
| 38 |