| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 9 | #[Package('checkout')] |
||
| 10 | class ShippingMethodPriceExceptionHandler implements ExceptionHandlerInterface |
||
| 11 | { |
||
| 12 | public function getPriority(): int |
||
| 13 | { |
||
| 14 | return ExceptionHandlerInterface::PRIORITY_DEFAULT; |
||
| 15 | } |
||
| 16 | |||
| 17 | public function matchException(\Exception $e): ?\Exception |
||
| 24 | } |
||
| 25 | } |
||
| 26 |