| Conditions | 3 |
| Paths | 4 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Sample\Validation; |
||
| 33 | public static function execute($value, ContextInterface $context): array |
||
| 34 | { |
||
| 35 | $idExists = is_int($value) === true && $value < 3; |
||
| 36 | |||
| 37 | return $idExists === true ? |
||
| 38 | static::createSuccessReply($value) : |
||
| 39 | static::createErrorReply($context, $value, Errors::IS_VALID_SKU); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |