44
55namespace Testo \Assert \Api \Builtin ;
66
7- use Testo \Assert \State \AssertException ;
7+ use Testo \Assert \State \Assertion \ AssertionException ;
88
99/**
1010 * Assertion utilities for numeric data types.
@@ -18,7 +18,7 @@ interface NumericType
1818 *
1919 * @param int|float $min Minimum threshold to compare with.
2020 * @param string $message Optional message for the assertion.
21- * @throws AssertException when the assertion fails.
21+ * @throws AssertionException when the assertion fails.
2222 */
2323 public function greaterThan (int |float $ min , string $ message = '' ): static ;
2424
@@ -27,7 +27,7 @@ public function greaterThan(int|float $min, string $message = ''): static;
2727 *
2828 * @param int|float $min Minimum threshold to compare with.
2929 * @param string $message Optional message for the assertion.
30- * @throws AssertException when the assertion fails.
30+ * @throws AssertionException when the assertion fails.
3131 */
3232 public function greaterThanOrEqual (int |float $ min , string $ message = '' ): static ;
3333
@@ -36,7 +36,7 @@ public function greaterThanOrEqual(int|float $min, string $message = ''): static
3636 *
3737 * @param int|float $max Maximum threshold to compare with.
3838 * @param string $message Optional message for the assertion.
39- * @throws AssertException when the assertion fails.
39+ * @throws AssertionException when the assertion fails.
4040 */
4141 public function lessThan (int |float $ max , string $ message = '' ): static ;
4242
@@ -45,7 +45,7 @@ public function lessThan(int|float $max, string $message = ''): static;
4545 *
4646 * @param int|float $max Maximum threshold to compare with.
4747 * @param string $message Optional message for the assertion.
48- * @throws AssertException when the assertion fails.
48+ * @throws AssertionException when the assertion fails.
4949 */
5050 public function lessThanOrEqual (int |float $ max , string $ message = '' ): static ;
5151}
0 commit comments