| Conditions | 6 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 17 | public function __construct(int $t = null, array $r = null, array $b = null, array $p = null, array $n = null) |
|
| 37 | { |
||
| 38 | 17 | !$t ?: $this->type = $t; |
|
| 39 | 17 | !$r ?: $this->data = $r; |
|
| 40 | 17 | !$b ?: $this->backtrace = $b; |
|
| 41 | 17 | !$p ?: $this->profile = $p; |
|
| 42 | 17 | !$n ?: $this->note = $n; |
|
| 43 | 17 | } |
|
| 97 |