| 1 | <?php |
||
| 11 | class InvalidMethodParametersException extends \InvalidArgumentException implements RpcException |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param string $method |
||
| 15 | * @param string[] $missing |
||
| 16 | * |
||
| 17 | * @return static |
||
| 18 | */ |
||
| 19 | 2 | public static function missing($method, array $missing) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $method |
||
| 32 | * @param string $name |
||
| 33 | * @param string $expected |
||
| 34 | * @param string $actual |
||
| 35 | * |
||
| 36 | * @return static |
||
| 37 | */ |
||
| 38 | 1 | public static function typeMismatch($method, $name, $expected, $actual) |
|
| 44 | } |
||
| 45 |