Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
41 | 2 | public function __construct( |
|
42 | string $type, |
||
43 | int $status, |
||
44 | string $title, |
||
45 | string $detail = null, |
||
46 | string $instance = null |
||
47 | ) { |
||
48 | 2 | $this->type = $type; |
|
49 | 2 | $this->status = $status; |
|
50 | 2 | $this->title = $title; |
|
51 | 2 | $this->detail = $detail; |
|
52 | 2 | $this->instance = $instance; |
|
53 | 2 | } |
|
54 | |||
103 |