Conditions | 2 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function createEncoding(): Objects\Encoding |
||
24 | { |
||
25 | return new Objects\Encoding( |
||
26 | $this->getContentType(), |
||
27 | $this->getHeaders() ? $this->getHeaders()->createHeaders() : null, |
||
28 | $this->getStyle(), |
||
29 | $this->isExplode(), |
||
30 | $this->isAllowReserved(), |
||
31 | $this->getExtensions() |
||
32 | ); |
||
33 | } |
||
34 | |||
95 |