Skip to content

Commit 8889290

Browse files
committed
bug #599 Fix class name (fabpot)
This PR was merged into the 1.0-dev branch. Discussion ---------- Fix class name Fix in #596 looks wrong to me as we are looking for the Doctrine Migration bundle here. Commits ------- 5dc39b8 Fix class name
2 parents 78b2801 + 5dc39b8 commit 8889290

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Maker/MakeMigration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Bundle\MakerBundle\Maker;
1313

14-
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
14+
use Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle;
1515
use Symfony\Bundle\MakerBundle\ApplicationAwareMakerInterface;
1616
use Symfony\Bundle\MakerBundle\ConsoleStyle;
1717
use Symfony\Bundle\MakerBundle\DependencyBuilder;
@@ -120,7 +120,7 @@ private function noChangesMessage(ConsoleStyle $io)
120120
public function configureDependencies(DependencyBuilder $dependencies)
121121
{
122122
$dependencies->addClassDependency(
123-
DoctrineBundle::class,
123+
DoctrineMigrationsBundle::class,
124124
'migrations'
125125
);
126126
}

0 commit comments

Comments
 (0)