| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 3 | protected function loadAnswer(): RemoteRequest\Protocols\Dummy\Answer |
|
| 29 | { |
||
| 30 | 3 | $lib = new Http\Answer($this->rrLang); |
|
| 31 | 3 | $lib->addStringDecoding(new Http\Answer\DecodeStrings\Chunked()); |
|
| 32 | 3 | $lib->addStringDecoding(new Http\Answer\DecodeStrings\Zipped()); |
|
| 33 | 3 | $lib->addStringDecoding(new Http\Answer\DecodeStrings\Compressed()); |
|
| 34 | 3 | $lib->addStringDecoding(new Http\Answer\DecodeStrings\Deflated()); |
|
| 35 | 3 | return $lib; |
|
| 36 | } |
||
| 38 |