Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | 9 | public function normalize($object, $format = null, array $context = []) |
|
18 | { |
||
19 | 9 | if (!$object instanceof ValueObject) { |
|
20 | 3 | throw new InvalidArgumentException( |
|
21 | 3 | sprintf( |
|
22 | 3 | 'The object must implement the "%s".', |
|
23 | 3 | ValueObject::class |
|
24 | ) |
||
25 | ); |
||
26 | } |
||
27 | |||
28 | 6 | return $object->value(); |
|
29 | } |
||
30 | |||
60 |