When phpdoc doesn't match actual order of params or misses params, inline parameters are incorrect:
/**
* @param Countable|iterable $haystack
*/
public function assertCount(int $expectedCount, $haystack, string $message = "")
Shows up as:
$I->assertCount(haystack: 1, expectedCount: $array);