Scrutinizer really sucks!!!

Stop a few of scrutinizers complaints about 100% valid use of PHP variadics.
Hopefully, this issue will cease to be an issue when we can specify mixed datatype for variadic arguments in the tests
This commit is contained in:
MarkBaker
2023-03-10 04:43:11 +01:00
parent a91dd60a98
commit 9c2deb125f
12 changed files with 12 additions and 12 deletions
@@ -23,7 +23,7 @@ class Days360Test extends TestCase
*/
public function testDirectCallToDAYS360($expectedResult, ...$args): void
{
$result = Days360::between(...$args);
$result = Days360::between(/** @scrutinizer ignore-type */ ...$args);
self::assertSame($expectedResult, $result);
}