| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 67 | public function __construct(string $table, array $fields, array $where, |
||
| 68 | array $group, array $order = [], int $limit = 1, int $page = 0) |
||
| 69 | { |
||
| 70 | $this->table = $table; |
||
| 71 | $this->fields = $fields; |
||
| 72 | $this->where = $where; |
||
| 73 | $this->group = $group; |
||
| 74 | $this->order = $order; |
||
| 75 | $this->limit = $limit; |
||
| 76 | $this->page = $page; |
||
| 77 | } |
||
| 79 |