Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Apr 7, 2023
1 parent 6524ae8 commit fc3183f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions tests/ReflectionClosure2Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,7 @@

test('anonymous inside closure', function () {
$f1 = function () {
return new class() extends A
{
return new class() extends A {
};
};
$e1 = 'function () {
Expand All @@ -160,8 +159,7 @@
}';

$f2 = function () {
return new class() extends A implements B
{
return new class() extends A implements B {
};
};
$e2 = 'function () {
Expand Down Expand Up @@ -279,8 +277,7 @@ public function x(\A $a): \B
function a(Qux $q): Bar
{
f1();
$a = new class() extends Bar
{
$a = new class() extends Bar {
};
}
};
Expand Down

0 comments on commit fc3183f

Please sign in to comment.