Skip to content

Commit

Permalink
Merge branch '1.x' into 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Jan 7, 2025
2 parents 7d642a4 + 0bf686b commit 2dbb37f
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,16 +211,19 @@ This method was introduced in PHPUnit 6.4.0.

Polyfills the following methods:

| | | |
| --------------------------------- | --------------------------------- | ------------------------------- |
| [`Assert::assertIsArray()`] | [`Assert::assertIsBool()`] | [`Assert::assertIsFloat()`] |
| [`Assert::assertIsInt()`] | [`Assert::assertIsNumeric()`] | [`Assert::assertIsObject()`] |
| [`Assert::assertIsResource()`] | [`Assert::assertIsString()`] | [`Assert::assertIsScalar()`] |
| [`Assert::assertIsCallable()`] | [`Assert::assertIsIterable()`] | |
| [`Assert::assertIsNotArray()`] | [`Assert::assertIsNotBool()`] | [`Assert::assertIsNotFloat()`] |
| [`Assert::assertIsNotInt()`] | [`Assert::assertIsNotNumeric()`] | [`Assert::assertIsNotObject()`] |
| [`Assert::assertIsNotResource()`] | [`Assert::assertIsNotString()`] | [`Assert::assertIsNotScalar()`] |
| [`Assert::assertIsNotCallable()`] | [`Assert::assertIsNotIterable()`] | |
| | |
| ------------------------------ | --------------------------------- |
| [`Assert::assertIsArray()`] | [`Assert::assertIsNotArray()`] |
| [`Assert::assertIsBool()`] | [`Assert::assertIsNotBool()`] |
| [`Assert::assertIsFloat()`] | [`Assert::assertIsNotFloat()`] |
| [`Assert::assertIsInt()`] | [`Assert::assertIsNotInt()`] |
| [`Assert::assertIsNumeric()`] | [`Assert::assertIsNotNumeric()`] |
| [`Assert::assertIsObject()`] | [`Assert::assertIsNotObject()`] |
| [`Assert::assertIsResource()`] | [`Assert::assertIsNotResource()`] |
| [`Assert::assertIsString()`] | [`Assert::assertIsNotString()`] |
| [`Assert::assertIsScalar()`] | [`Assert::assertIsNotScalar()`] |
| [`Assert::assertIsCallable()`] | [`Assert::assertIsNotCallable()`] |
| [`Assert::assertIsIterable()`] | [`Assert::assertIsNotIterable()`] |

These methods were introduced in PHPUnit 7.5.0 as alternatives to the `Assert::assertInternalType()` and `Assert::assertNotInternalType()` methods, which were soft deprecated in PHPUnit 7.5.0, hard deprecated (warning) in PHPUnit 8.0.0 and removed in PHPUnit 9.0.0.

Expand Down

0 comments on commit 2dbb37f

Please sign in to comment.