Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
40 | 53 | public function __construct( |
|
41 | $database, |
||
42 | $table, |
||
43 | $tableId, |
||
44 | $columnsAmount, |
||
45 | array $fields |
||
46 | ) { |
||
47 | 53 | $this->database = $database; |
|
48 | 53 | $this->table = $table; |
|
49 | 53 | $this->tableId = $tableId; |
|
50 | 53 | $this->columnsAmount = $columnsAmount; |
|
51 | 53 | $this->fields = $fields; |
|
52 | 53 | } |
|
105 | } |