mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-12-02 17:38:12 +01:00
8732175020
- 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
9 lines
155 B
PHP
9 lines
155 B
PHP
<?php declare(strict_types=1);
|
|
namespace Psalm\PhpUnitPlugin\Exception;
|
|
|
|
use RuntimeException;
|
|
|
|
class UnsupportedPsalmVersion extends RuntimeException
|
|
{
|
|
}
|