Skip to content

Commit 8b5c019

Browse files
committed
style: add back phpstan ignores
1 parent bfd87d1 commit 8b5c019

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Tempest/Framework/Testing/Http/TestResponseHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ public function assertHasNoJsonValidationErrors(): self
529529
*/
530530
public function dd(): void
531531
{
532-
dd($this->response);
532+
dd($this->response); // @phpstan-ignore disallowed.function
533533
}
534534

535535
private function assertHasContainer(): void

tests/Integration/Http/HttpExceptionHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function __construct(FrameworkKernel $kernel)
5858

5959
public static function boot(string $root, array $discoveryLocations = [], ?Container $container = null): self
6060
{
61-
return Kernel::boot($root, $discoveryLocations, $container);
61+
return Kernel::boot($root, $discoveryLocations, $container); // @phpstan-ignore-line
6262
}
6363

6464
public function shutdown(int|string $status = ''): never

tests/Integration/Mapper/Fixtures/SerializableObject.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ final class SerializableObject implements Serializable
88
{
99
/*
1010
* @mago-expect lint:return-type
11+
* @phpstan-ignore return.unusedType
1112
*/
1213
public function serialize()
1314
{

0 commit comments

Comments
 (0)