1 | <?php |
||
9 | trait StringParameterValue |
||
10 | { |
||
11 | /** |
||
12 | * Constructor. |
||
13 | * |
||
14 | * @param string $value Parameter value |
||
15 | */ |
||
16 | abstract public function __construct($value); |
||
17 | |||
18 | /** |
||
19 | * Initialize from a JSON value. |
||
20 | * |
||
21 | * @param string $value |
||
22 | * @return static |
||
23 | */ |
||
24 | 82 | public static function fromJSONValue($value) { |
|
27 | } |
||
28 |