| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function __construct(Table $table, array $data = []) |
||
| 24 | { |
||
| 25 | $this->table = $table; |
||
| 26 | |||
| 27 | $this->query = $table->getDatabase() |
||
| 28 | ->update() |
||
| 29 | ->table((string) $table); |
||
| 30 | |||
| 31 | foreach ($data as $fieldName => $value) { |
||
| 32 | $this->table->{$fieldName}->update($this->query, $value); |
||
| 33 | } |
||
| 34 | } |
||
| 35 | } |
||
| 36 |