@@ -6,7 +6,6 @@ |
||
6 | 6 | use Kaliop\eZMigrationBundle\Core\MigrationService; |
7 | 7 | use Symfony\Component\Console\Input\InputInterface; |
8 | 8 | use Symfony\Component\Console\Output\OutputInterface; |
9 | -use Symfony\Component\Console\Input\InputOption; |
|
10 | 9 | use Kaliop\eZMigrationBundle\API\Value\Migration; |
11 | 10 | use Kaliop\eZMigrationBundle\API\Value\MigrationDefinition; |
12 | 11 |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | echo 'B';*/ |
50 | 50 | |
51 | 51 | $ms->executeMigration(new MigrationDefinition( |
52 | - 'test_'.time(), |
|
52 | + 'test_' . time(), |
|
53 | 53 | '/hello', |
54 | 54 | '123', |
55 | 55 | MigrationDefinition::STATUS_PARSED, |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | |
63 | 63 | $sh = $this->getContainer()->get('ez_migration_bundle.storage_handler'); |
64 | 64 | |
65 | - $m1 = 'hello_'.time(); |
|
66 | - $m2 = 'there_'.time(); |
|
65 | + $m1 = 'hello_' . time(); |
|
66 | + $m2 = 'there_' . time(); |
|
67 | 67 | $sh->startMigration(new MigrationDefinition( |
68 | 68 | $m1, |
69 | 69 | '/hello', |