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