1 | <?php |
||
8 | class ConfigurationHelper extends Helper |
||
9 | { |
||
10 | /** |
||
11 | * @var \Doctrine\DBAL\Migrations\Configuration\Configuration |
||
12 | */ |
||
13 | private $configuration; |
||
14 | |||
15 | /** |
||
16 | * @param \Doctrine\DBAL\Migrations\Configuration\Configuration $configuration |
||
17 | */ |
||
18 | public function __construct(Configuration $configuration) |
||
22 | |||
23 | /** |
||
24 | * Get Configuration instance |
||
25 | * |
||
26 | * @return \Doctrine\DBAL\Migrations\Configuration\Configuration |
||
27 | */ |
||
28 | public function getConfiguration() |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function getName() |
||
40 | } |
||
41 |