| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 24 | public static function salesChannelNotFound(string $salesChannelId): self |
||
| 25 | { |
||
| 26 | return new self( |
||
| 27 | Response::HTTP_BAD_REQUEST, |
||
| 28 | self::THEME_SALES_CHANNEL_NOT_FOUND, |
||
| 29 | 'The sales channel with the id {{ id }} could not be found', |
||
| 30 | ['id' => $salesChannelId] |
||
| 31 | ); |
||
| 34 |