See b5addd4
In this commit, the static analysis test suite was rendered non-functional.
For instance:
/**
* @psalm-pure
*
* @param mixed $value
- *
- * @return iterable<string>
*/
function allString($value): iterable
{
Assert::allString($value);
return $value;
}
This rendered the main purpose of the allString() function moot: static analysis tooling is no longer picking up if an iterable<string> is being produced
See b5addd4
In this commit, the static analysis test suite was rendered non-functional.
For instance:
This rendered the main purpose of the
allString()function moot: static analysis tooling is no longer picking up if aniterable<string>is being produced