Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | public function __construct(ApiResourceClassMetadata $metadata, string $resourceUrl, $identifierValue) |
||
34 | { |
||
35 | $this->metadata = $metadata; |
||
36 | $this->resourceUrl = $resourceUrl; |
||
37 | if ($identifierValue instanceof ValueObjectInterface) { |
||
38 | $this->identifierValue = (string) $identifierValue->toNative(); |
||
39 | } else { |
||
40 | $this->identifierValue = (string) $identifierValue; |
||
41 | } |
||
68 |