Skip to content

Commit

Permalink
Change class keyword to lowercase (#3346)
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Sep 20, 2024
1 parent 419543f commit d6b8c72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/AppTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,7 @@ public function testInvokeWithCallableRegisteredInContainer(): void
$responseFactoryProphecy = $this->prophesize(ResponseFactoryInterface::class);
$responseFactoryProphecy->createResponse()->willReturn($responseProphecy->reveal());

$handler = new Class
$handler = new class
{
public function foo(ServerRequestInterface $request, ResponseInterface $response)
{
Expand Down Expand Up @@ -1465,7 +1465,7 @@ public function testInvokeWithNonExistentMethodOnCallableRegisteredInContainer()
$responseFactoryProphecy = $this->prophesize(ResponseFactoryInterface::class);
$responseFactoryProphecy->createResponse()->willReturn($responseProphecy->reveal());

$handler = new Class
$handler = new class
{
};

Expand Down

0 comments on commit d6b8c72

Please sign in to comment.