1 | <?php |
||
10 | class InvalidArgumentException extends \InvalidArgumentException implements JsonException |
||
11 | { |
||
12 | /** @noinspection MoreThanThreeArgumentsInspection */ |
||
13 | /** |
||
14 | * @param string $expectedType |
||
15 | * @param string $argumentName |
||
16 | * @param mixed $currentValue |
||
17 | * @param int $code |
||
18 | * |
||
19 | * @return InvalidArgumentException |
||
20 | */ |
||
21 | public static function getInstance($expectedType, $argumentName, $currentValue, $code = 0) |
||
33 | } |
||
34 |