Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
20 | public function matchException(\Exception $e): ?\Exception |
||
21 | { |
||
22 | if (preg_match( |
||
23 | '/SQLSTATE\[23000]: Integrity constraint violation: 1451.*CONSTRAINT `fk.theme_media.media_id` FOREIGN KEY \(`media_id`\) REFERENCES `media` \(`id`\)/', |
||
24 | $e->getMessage(), |
||
25 | )) { |
||
26 | return ThemeException::themeMediaStillInUse(); |
||
27 | } |
||
28 | |||
29 | return null; |
||
30 | } |
||
32 |