Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ValueObject implements Factory |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $methodOrPropertyName; |
||
17 | |||
18 | /** |
||
19 | * @var bool |
||
20 | */ |
||
21 | private $isProperty; |
||
22 | |||
23 | 2 | public function __construct(string $name, bool $isProperty = false) |
|
27 | 2 | } |
|
28 | |||
29 | 2 | public function create(Collator $collator): Comparable |
|
32 | } |
||
33 | } |