diff --git a/tests/phpunit/block/BrewingStandTest.php b/tests/phpunit/block/BrewingStandTest.php index 092a34ead..9f4a8d5e3 100644 --- a/tests/phpunit/block/BrewingStandTest.php +++ b/tests/phpunit/block/BrewingStandTest.php @@ -39,7 +39,6 @@ class BrewingStandTest extends TestCase{ } /** - * * @dataProvider slotsProvider * * @param BrewingStandSlot[] $slots diff --git a/tests/phpunit/event/HandlerListManagerTest.php b/tests/phpunit/event/HandlerListManagerTest.php index 01de9ff84..fd827c698 100644 --- a/tests/phpunit/event/HandlerListManagerTest.php +++ b/tests/phpunit/event/HandlerListManagerTest.php @@ -54,9 +54,6 @@ class HandlerListManagerTest extends TestCase{ /** * @dataProvider isValidClassProvider * - * @param \ReflectionClass $class - * @param bool $isValid - * @param string $reason * @phpstan-param \ReflectionClass $class */ public function testIsValidClass(\ReflectionClass $class, bool $isValid, string $reason) : void{ @@ -77,8 +74,6 @@ class HandlerListManagerTest extends TestCase{ /** * @dataProvider resolveParentClassProvider * - * @param \ReflectionClass $class - * @param \ReflectionClass|null $expect * @phpstan-param \ReflectionClass $class * @phpstan-param \ReflectionClass|null $expect */ diff --git a/tests/phpunit/item/LegacyStringToItemParserTest.php b/tests/phpunit/item/LegacyStringToItemParserTest.php index 56e356552..546a383bf 100644 --- a/tests/phpunit/item/LegacyStringToItemParserTest.php +++ b/tests/phpunit/item/LegacyStringToItemParserTest.php @@ -45,9 +45,6 @@ class LegacyStringToItemParserTest extends TestCase{ /** * @dataProvider itemFromStringProvider - * @param string $string - * @param int $id - * @param int $meta */ public function testFromStringSingle(string $string, int $id, int $meta) : void{ $item = LegacyStringToItemParser::getInstance()->parse($string); diff --git a/tests/phpunit/plugin/ApiVersionTest.php b/tests/phpunit/plugin/ApiVersionTest.php index ecc3a8a2b..4d348ee0d 100644 --- a/tests/phpunit/plugin/ApiVersionTest.php +++ b/tests/phpunit/plugin/ApiVersionTest.php @@ -49,10 +49,6 @@ class ApiVersionTest extends TestCase{ /** * @dataProvider compatibleApiProvider - * - * @param string $myVersion - * @param string $wantVersion - * @param bool $expected */ public function testCompatibleApi(string $myVersion, string $wantVersion, bool $expected) : void{ self::assertSame($expected, ApiVersion::isCompatible($myVersion, [$wantVersion]), "my version: $myVersion, their version: $wantVersion, expect " . ($expected ? "yes" : "no"));