| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | 27 | public function __construct( |
|
| 21 | string $xml, |
||
| 22 | int $code = self::STATUS_OK, |
||
| 23 | array $headers = [], |
||
| 24 | string $protocol = '1.1', |
||
| 25 | string $reasonPhrase = '' |
||
| 26 | ) { |
||
| 27 | 27 | $this->init($code, $reasonPhrase, $headers, $this->createBody($xml), $protocol); |
|
| 28 | 27 | $this->setContentTypeHeaderIfNotExists('application/xml; charset=UTF-8'); |
|
| 29 | } |
||
| 31 |