Skip to content

Commit ab3d371

Browse files
authored
chore: run rector
1 parent 75d902b commit ab3d371

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Tempest/Reflection/tests/ReflectionTypeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function test_as_class(): void
4444
{
4545
$this->assertSame(
4646
expected: A::class,
47-
actual: (new TypeReflector('Tempest\Reflection\Tests\Fixtures\A'))->asClass()->getName(),
47+
actual: (new TypeReflector(A::class))->asClass()->getName(),
4848
);
4949

5050
$this->assertSame(

tests/Integration/Http/Responses/InvalidTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function test_invalid_with_psr_request(): void
4444
$this->assertArrayHasKey('foo', $session->get(Session::ORIGINAL_VALUES));
4545
}
4646

47-
public function test_invalid_with_request()
47+
public function test_invalid_with_request(): void
4848
{
4949
$request = new GenericRequest(
5050
method: Method::GET,

0 commit comments

Comments
 (0)