1 | <?php |
||
10 | abstract class MigrationApiContainerAware extends MigrationApi |
||
11 | { |
||
12 | private $container; |
||
13 | |||
14 | /** |
||
15 | * Constructor. |
||
16 | * |
||
17 | * @param Manipulation $manipulation Manipulation instance. |
||
18 | * @param Info $info Info instance. |
||
19 | * @param ContainerInterfce $container Container instance. |
||
20 | */ |
||
21 | public function __construct(Manipulation $manipulation, Info $info, ContainerInterface $container) |
||
26 | |||
27 | /** |
||
28 | * Get a container. |
||
29 | * |
||
30 | * @return ContainerInterfce|ContainerInterface |
||
31 | */ |
||
32 | protected function getContainer() |
||
36 | |||
37 | } |
||
38 |