diff --git a/Tests/Command/DropDatabaseDoctrineTest.php b/Tests/Command/DropDatabaseDoctrineTest.php index a6111c03e..76aca20c9 100644 --- a/Tests/Command/DropDatabaseDoctrineTest.php +++ b/Tests/Command/DropDatabaseDoctrineTest.php @@ -90,8 +90,12 @@ public function testExecuteWithoutOptionForceWillFailWithAttentionMessage() : vo public function provideForceOption(): Generator { - yield 'full name' => [['--force' => true]]; - yield 'short name' => [['-f' => true]]; + yield 'full name' => [ + ['--force' => true], + ]; + yield 'short name' => [ + ['-f' => true], + ]; } public function provideIncompatibleDriverOptions(): Generator