Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | 13 | public function __construct(string $rootTag = 'response', string $version = '1.0', string $encoding = 'UTF-8') |
|
24 | { |
||
25 | 13 | $this->serializer = new Serializer([new ObjectNormalizer()], [new XmlEncoder([ |
|
26 | 13 | XmlEncoder::ROOT_NODE_NAME => $rootTag, |
|
27 | 13 | XmlEncoder::VERSION => $version, |
|
28 | 13 | XmlEncoder::ENCODING => $encoding, |
|
29 | ])]); |
||
42 |