11<?php
2+
23/*
3- * This file is part of the <package> package.
4+ * This file is part of the PHPCR Migrations package
45 *
5- * (c) 2011-2015 Daniel Leech
6+ * (c) Daniel Leech <daniel@dantleech.com>
67 *
78 * For the full copyright and license information, please view the LICENSE
89 * file that was distributed with this source code.
910 */
1011
1112namespace DTL \Bundle \PhpcrMigrations \Command ;
1213
14+ use DTL \PhpcrMigrations \MigratorFactory ;
1315use Symfony \Component \Console \Command \Command ;
14- use DTL \PhpcrMigrations \VersionStorage ;
15- use DTL \PhpcrMigrations \VersionFinder ;
16- use Symfony \Component \Console \Helper \Table ;
17- use Symfony \Component \Console \Output \OutputInterface ;
18- use Symfony \Component \Console \Input \InputInterface ;
1916use Symfony \Component \Console \Input \InputArgument ;
20- use DTL \PhpcrMigrations \Migrator ;
21- use PHPCR \SessionInterface ;
22- use DTL \PhpcrMigrations \MigratorFactory ;
17+ use Symfony \Component \Console \Input \InputInterface ;
18+ use Symfony \Component \Console \Output \OutputInterface ;
2319use Symfony \Component \DependencyInjection \ContainerAwareInterface ;
2420use Symfony \Component \DependencyInjection \ContainerInterface ;
2521
@@ -34,8 +30,7 @@ class MigrateCommand extends Command
3430 public function __construct (
3531 MigratorFactory $ factory ,
3632 ContainerInterface $ container
37- )
38- {
33+ ) {
3934 parent ::__construct ();
4035 $ this ->factory = $ factory ;
4136 $ this ->container = $ container ;
0 commit comments