| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function __construct(string $name, array $columns, array $filters, array $actions, int $pageSize, string $query = null) |
||
| 18 | { |
||
| 19 | $this->name = $name; |
||
| 20 | $this->columns = $columns; |
||
| 21 | $this->filters = $filters; |
||
| 22 | $this->actions = $actions; |
||
| 23 | $this->pageSize = $pageSize; |
||
| 24 | $this->query = $query; |
||
| 25 | } |
||
| 26 | |||
| 82 |