| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 25 | public function __construct( |
||
| 26 | string $code, |
||
| 27 | string $message, |
||
| 28 | string $date = null, |
||
| 29 | string $status = null, |
||
| 30 | string $link = null, |
||
| 31 | string $type = null |
||
| 32 | ) |
||
| 33 | { |
||
| 34 | $this->code = $code; |
||
| 35 | $this->date = $date; |
||
| 36 | $this->status = $status; |
||
| 37 | $this->message = $message; |
||
| 38 | $this->link = $link; |
||
| 39 | $this->type = $type; |
||
| 40 | } |
||
| 43 |