Conditions | 6 |
Paths | 32 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
40 | 16 | public function __construct(int $t = null, array $r = null, array $b = null, array $p = null, array $n = null) |
|
41 | { |
||
42 | 16 | !$t ?: $this->type = $t; |
|
43 | 16 | !$r ?: $this->data = $r; |
|
44 | 16 | !$b ?: $this->backtrace = $b; |
|
45 | 16 | !$p ?: $this->profile = $p; |
|
46 | 16 | !$n ?: $this->note = $n; |
|
47 | 16 | } |
|
48 | |||
89 |