Skip to content

Commit 340e982

Browse files
authored
fix(test): remove stale phpstan ignores in CollectionNormalizerTest (#8384)
1 parent 798b4cc commit 340e982

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Hal/Tests/Serializer/CollectionNormalizerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ private function normalizePaginator(bool $partial = false): array
125125
$paginator->method('current')->willReturn('foo'); // @phpstan-ignore-line
126126

127127
if (!$partial) {
128-
$paginator->method('getLastPage')->willReturn(7.); // @phpstan-ignore-line
129-
$paginator->method('getTotalItems')->willReturn(1312.); // @phpstan-ignore-line
128+
$paginator->method('getLastPage')->willReturn(7.);
129+
$paginator->method('getTotalItems')->willReturn(1312.);
130130
} else {
131131
$paginator->method('count')->willReturn(12);
132132
}

0 commit comments

Comments
 (0)