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