| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 9 | public function __construct(Result $totals, $details, array $rows, array $columns, array $aggregates) |
|
| 31 | { |
||
| 32 | 9 | $this->totals = $totals; |
|
| 33 | 9 | $this->details = ($details instanceof Result) ? $details : null; |
|
| 34 | 9 | $this->rows = $rows; |
|
| 35 | 9 | $this->columns = $columns; |
|
| 36 | 9 | $this->aggregates = $aggregates; |
|
| 37 | 9 | } |
|
| 38 | |||
| 88 |