| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | class GuestNotAuthenticatedException extends ShopwareHttpException |
||
| 9 | { |
||
| 10 | public function __construct() |
||
| 13 | } |
||
| 14 | |||
| 15 | public function getErrorCode(): string |
||
| 16 | { |
||
| 17 | return 'CHECKOUT__GUEST_NOT_AUTHENTICATED'; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getStatusCode(): int |
||
| 23 | } |
||
| 24 | } |
||
| 25 |