Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
16 | 55 | public function __construct( |
|
17 | string $database, |
||
18 | string $table, |
||
19 | string $tableId, |
||
20 | int $columnsAmount, |
||
21 | ColumnDTOCollection $columnDTOCollection |
||
22 | ) { |
||
23 | 55 | $this->database = $database; |
|
24 | 55 | $this->table = $table; |
|
25 | 55 | $this->tableId = $tableId; |
|
26 | 55 | $this->columnsAmount = $columnsAmount; |
|
27 | 55 | $this->columnDTOCollection = $columnDTOCollection; |
|
28 | 55 | } |
|
62 | } |