1 | <?php |
||
9 | abstract class MapperAbstract implements MapperInterface |
||
10 | { |
||
11 | /** @var ContainerInterface */ |
||
12 | protected $container; |
||
13 | |||
14 | 13 | public function __construct(ContainerInterface $container) |
|
18 | |||
19 | 4 | public function get(string $type, array $options) |
|
48 | |||
49 | 3 | public function has(string $type) |
|
63 | |||
64 | abstract public function getFactoryClassName(string $type); |
||
65 | } |
||
66 |