Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function __construct(DatabaseAdapter $adapter, DatabaseModify $databaseModify, $defaultSort, $table) { |
||
14 | $this->adapter = $adapter; |
||
15 | $this->databaseModify = $databaseModify; |
||
16 | $this->selectBuilder = new \Maphper\Lib\SelectBuilder(); |
||
17 | $this->whereBuilder = new \Maphper\Lib\Sql\WhereBuilder(); |
||
18 | $this->defaultSort = $defaultSort; |
||
19 | $this->table = $table; |
||
20 | } |
||
50 |