1 | <?php declare(strict_types=1); |
||
27 | final class Value extends ExecuteRule |
||
28 | { |
||
29 | /** |
||
30 | * Property key. |
||
31 | */ |
||
32 | private const PROPERTY_VALUE = self::PROPERTY_LAST + 1; |
||
33 | |||
34 | /** |
||
35 | * @param array $value |
||
36 | */ |
||
37 | 1 | public function __construct($value) |
|
43 | |||
44 | /** |
||
45 | * @param mixed $value |
||
46 | * @param ContextInterface $context |
||
47 | * |
||
48 | * @return array |
||
49 | * |
||
50 | * @SuppressWarnings(PHPMD.StaticAccess) |
||
51 | */ |
||
52 | 1 | public static function execute($value, ContextInterface $context): array |
|
58 | } |
||
59 |