| 1 | <?php |
||
| 12 | class Configuration extends BaseConfiguration |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Flag whether doctrine migrations bundle is installed. |
||
| 16 | * |
||
| 17 | * @var bool |
||
| 18 | */ |
||
| 19 | private static $haveMigrationBundle; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Service container. |
||
| 23 | * |
||
| 24 | * @var ContainerInterface |
||
| 25 | */ |
||
| 26 | private $container; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Set service container. |
||
| 30 | * |
||
| 31 | * @param ContainerInterface $container Service container |
||
| 32 | * |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function setContainer(ContainerInterface $container) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Tune this configuration parameters according to migrations bundle. |
||
| 42 | * |
||
| 43 | * @return void |
||
| 44 | */ |
||
| 45 | public function configure() |
||
| 57 | } |
||
| 58 |