Skip to content

Commit bb26eaa

Browse files
authored
Remove useless psalm annotation (#1121)
1 parent fda09fd commit bb26eaa

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/Result/TableExistsWaiter.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ protected function extractState(Response $response, ?HttpException $exception):
2424
return self::STATE_PENDING;
2525
}
2626

27-
/** @psalm-suppress TypeDoesNotContainType */
2827
return null === $exception ? self::STATE_PENDING : self::STATE_FAILURE;
2928
}
3029

src/Result/TableNotExistsWaiter.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ protected function extractState(Response $response, ?HttpException $exception):
2020
return self::STATE_SUCCESS;
2121
}
2222

23-
/** @psalm-suppress TypeDoesNotContainType */
2423
return null === $exception ? self::STATE_PENDING : self::STATE_FAILURE;
2524
}
2625

0 commit comments

Comments
 (0)