Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class InvalidArgumentException extends BuiltinInvalidArgumentException |
||
15 | { |
||
16 | /** |
||
17 | * @param string $expected description of expected type |
||
18 | * @param mixed $parameter the parameter that is not of the expected type. |
||
19 | * |
||
20 | * @return \SimpleSAML\SAML2\Exception\InvalidArgumentException |
||
21 | */ |
||
22 | public static function invalidType(string $expected, $parameter): InvalidArgumentException |
||
33 |