1 | <?php |
||
14 | class LeagueContainerAdapter implements AcclimateContainerInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var ContainerInterface A League Container |
||
18 | */ |
||
19 | private $container; |
||
20 | |||
21 | /** |
||
22 | * @param ContainerInterface $container A League Container |
||
23 | */ |
||
24 | public function __construct(ContainerInterface $container) |
||
28 | |||
29 | public function get($id) |
||
39 | |||
40 | public function has($id) |
||
50 | } |
||
51 |