| Conditions | 3 |
| Paths | 4 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 39 | public static function execute($value, ContextInterface $context): array |
||
| 40 | { |
||
| 41 | $idExists = is_int($value) === true && $value < 3; |
||
| 42 | |||
| 43 | return $idExists === true ? |
||
| 44 | static::createSuccessReply($value) : |
||
| 45 | static::createErrorReply( |
||
| 46 | $context, |
||
| 47 | $value, |
||
| 48 | Errors::IS_VALID_SKU, |
||
| 49 | static::MESSAGE_TEMPLATE, |
||
| 50 | [] |
||
| 51 | ); |
||
| 52 | } |
||
| 53 | } |
||
| 54 |