| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ShortCodeCannotBeRegeneratedException extends RuntimeException |
||
| 8 | { |
||
| 9 | 1 | public static function forShortUrlWithCustomSlug(): self |
|
| 10 | { |
||
| 11 | 1 | return new self('The short code cannot be regenerated on ShortUrls where a custom slug was provided.'); |
|
| 12 | } |
||
| 13 | |||
| 14 | 1 | public static function forShortUrlAlreadyPersisted(): self |
|
| 17 | } |
||
| 18 | } |
||
| 19 |