Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function __construct(string $table, array $strict_conditions) |
||
13 | { |
||
14 | if (empty($strict_conditions)) { |
||
15 | throw new \InvalidArgumentException('DELETE_USED_AS_TRUNCATE'); |
||
16 | } |
||
17 | |||
18 | $this->table = $table; |
||
19 | $this->add((new Where($table))->andFields($strict_conditions, $table, '=')); |
||
20 | } |
||
32 |