| 1 | <?php |
||
| 12 | class Configuration extends BaseConfiguration |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Service container |
||
| 16 | * |
||
| 17 | * @var ContainerInterface |
||
| 18 | */ |
||
| 19 | private $container; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Set service container |
||
| 23 | * |
||
| 24 | * @param ContainerInterface $container Service container |
||
| 25 | * |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | public function setContainer(ContainerInterface $container) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Tune this configuration parameters according to migrations bundle |
||
| 35 | * |
||
| 36 | * @return void |
||
| 37 | */ |
||
| 38 | public function configure() |
||
| 42 | } |
||
| 43 |