Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | 21 | public function __construct(int $code, array $payload, string $contentType = 'application/json', string $charset = 'utf-8', ?DateTimeInterface $expiration = null) |
|
31 | { |
||
32 | 21 | $this->code = $code; |
|
33 | 21 | $this->payload = $payload; |
|
34 | 21 | $this->contentType = $contentType ?: 'application/json'; |
|
35 | 21 | $this->charset = $charset; |
|
36 | 21 | $this->expiration = $expiration; |
|
37 | 21 | } |
|
38 | |||
79 |