Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function __construct( |
||
33 | string $body = '', |
||
34 | string $status = 'info', |
||
35 | string $from = 'system', |
||
36 | string $url = null, |
||
37 | array $extra = [] |
||
38 | ) { |
||
39 | $this->body = $body; |
||
40 | $this->status = $status; |
||
41 | $this->from = $from; |
||
42 | $this->url = $url; |
||
43 | $this->extra = $extra; |
||
44 | } |
||
45 | |||
81 |