diff --git a/tests/View/ViewFactoryTest.php b/tests/View/ViewFactoryTest.php index c88a45727e2e..79c02cd4f0ff 100755 --- a/tests/View/ViewFactoryTest.php +++ b/tests/View/ViewFactoryTest.php @@ -562,7 +562,7 @@ public function testAddingLoopDoesNotCloseGenerator() $data = (new class { public function generate() { - for($count = 0; $count < 3; $count++) { + for ($count = 0; $count < 3; $count++) { yield ['a', 'b']; } }