| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 14 | public static function codeAlreadyRedeemed(string $code): self |
||
| 15 | { |
||
| 16 | return new self( |
||
| 17 | Response::HTTP_BAD_REQUEST, |
||
| 18 | self::PROMOTION_CODE_ALREADY_REDEEMED, |
||
| 19 | 'Promotion with code "{{ code }}" has already been marked as redeemed!', |
||
| 20 | ['code' => $code] |
||
| 21 | ); |
||
| 24 |