Completed
Push — master ( 172340...b8107c )
by Gaetano
09:56
created
Command/TestBenchCommand.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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',
Please login to merge, or discard this patch.