Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
21 | 1 | protected function loadAnswer(): RemoteRequest\Protocols\Dummy\Answer |
|
22 | { |
||
23 | 1 | $lib = new Restful\Answer($this->rrLang); |
|
24 | 1 | $lib->addStringDecoding(new Http\Answer\DecodeStrings\Chunked()); |
|
25 | 1 | $lib->addStringDecoding(new Http\Answer\DecodeStrings\Zipped()); |
|
26 | 1 | $lib->addStringDecoding(new Http\Answer\DecodeStrings\Compressed()); |
|
27 | 1 | $lib->addStringDecoding(new Http\Answer\DecodeStrings\Deflated()); |
|
28 | 1 | return $lib; |
|
29 | } |
||
31 |