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