Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function __construct(Table $table, array $data = []) |
||
16 | { |
||
17 | $this->table = $table; |
||
18 | |||
19 | $this->query = $table->getDatabase() |
||
20 | ->insert() |
||
21 | ->into((string) $table); |
||
22 | |||
23 | foreach ($data as $fieldName => $value) { |
||
24 | $this->table->{$fieldName}->insert($this->query, $value); |
||
25 | } |
||
26 | } |
||
27 | |||
53 |