| 1 | <?php | ||
| 5 | final class InvalidPointerException extends \InvalidArgumentException | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * @param string $type | ||
| 9 | * | ||
| 10 | * @return static | ||
| 11 | */ | ||
| 12 | 2 | public static function invalidType($type) | |
| 16 | |||
| 17 | /** | ||
| 18 | * @param string $value | ||
| 19 | * | ||
| 20 | * @return static | ||
| 21 | */ | ||
| 22 | 6 | public static function nonexistentValue($value) | |
| 26 | |||
| 27 | /** | ||
| 28 | * @param string $target | ||
| 29 | * | ||
| 30 | * @return static | ||
| 31 | */ | ||
| 32 | 2 | public static function invalidTarget($target) | |
| 36 | } | ||
| 37 |