Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
45 | public function configure() |
||
46 | { |
||
47 | if (null === self::$haveMigrationBundle) { |
||
48 | self::$haveMigrationBundle = class_exists(DoctrineCommand::class); |
||
49 | } |
||
50 | |||
51 | if (!self::$haveMigrationBundle) { |
||
52 | return; |
||
53 | } |
||
54 | |||
55 | DoctrineCommand::configureMigrations($this->container, $this); |
||
56 | } |
||
57 | } |
||
58 |