diff --git a/stubs/Assert.php b/stubs/Assert.php index b8f6cf9..b20af03 100644 --- a/stubs/Assert.php +++ b/stubs/Assert.php @@ -103,17 +103,6 @@ public static function assertNotNull($actual, $message = '') {} */ function assertSame($expected, $actual, $message = '') : void {} - /** - * Asserts that two variables are loosely equal to each other - * - * @template T - * @param T $expected - * @param mixed $actual - * @param string $message - * @psalm-assert ~T $actual - */ - function assertEquals($expected, $actual, $message = '') : void {} - /** * Asserts that two variables are not the same. * @@ -124,15 +113,4 @@ function assertEquals($expected, $actual, $message = '') : void {} * @psalm-assert !=T $actual */ function assertNotSame($expected, $actual, $message = '') : void {} - - /** - * Asserts that two variables are not loosely equal to each other - * - * @template T - * @param T $expected - * @param mixed $actual - * @param string $message - * @psalm-assert !~T $actual - */ - function assertNotEquals($expected, $actual, $message = '') : void {} }