Skip to content

Commit

Permalink
Merge branch '5.6' of github.com:laravel/framework into 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 24, 2018
2 parents c05ec5b + dab389f commit c14caab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/View/ViewFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'];
}
}
Expand Down

0 comments on commit c14caab

Please sign in to comment.