| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class CannotMapTypeException extends \Exception |
||
| 8 | { |
||
| 9 | public static function createForType(string $className) |
||
| 10 | { |
||
| 11 | return new self('Cannot map class "'.$className.'" to a known GraphQL type. Check your TypeMapper configuration.'); |
||
| 12 | } |
||
| 13 | |||
| 14 | public static function createForInputType(string $className) |
||
| 17 | } |
||
| 18 | } |