psalm-plugin-phpunit/Exception/UnsupportedPsalmVersion.php
Bruce Weirdan 8732175020
Implemented provider type checks
- Invalid providers (should be iterable with array elements)
- Providers returning fewer arguments then test requires
- Providers returning datasets that are incompatible with test
signatures

refs psalm/phpunit-psalm-plugin#13
2019-02-19 22:58:56 +02:00

9 lines
155 B
PHP

<?php declare(strict_types=1);
namespace Psalm\PhpUnitPlugin\Exception;
use RuntimeException;
class UnsupportedPsalmVersion extends RuntimeException
{
}