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