| 1 | <?php declare(strict_types=1); |
||
| 28 | class IsSkuRule extends ExecuteRule |
||
| 29 | { |
||
| 30 | /** @var string Message Template */ |
||
| 31 | const MESSAGE_TEMPLATE = 'The value should be a valid SKU.'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param mixed $value |
||
| 35 | * @param ContextInterface $context |
||
| 36 | * |
||
| 37 | * @return array |
||
| 38 | */ |
||
| 39 | public static function execute($value, ContextInterface $context): array |
||
| 53 | } |
||
| 54 |