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