Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function __construct($value) |
||
38 | { |
||
39 | $this->generator = GeneratorFactory::create(); |
||
40 | $meta = $this->generator->get($this); |
||
41 | |||
42 | if (!$meta->isValid($value)) { |
||
43 | throw new InvalidValueException($value); |
||
44 | } |
||
45 | |||
46 | $this->constantName = $meta->getConstantName($value); |
||
47 | $this->value = $value; |
||
48 | } |
||
95 |