Conditions | 2 |
Paths | 2 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function __construct(Connection $conn, string $sql, array $values = []) |
||
17 | { |
||
18 | $this->stmt = $conn->prepare($sql); |
||
19 | |||
20 | foreach ($values as $value) { |
||
21 | $this->stmt->bindValue( |
||
22 | $value['parameter'], |
||
23 | $value['value'], |
||
24 | $value['data_type'] ?? null |
||
25 | ); |
||
26 | } |
||
27 | |||
28 | $this->stmt->execute(); |
||
29 | |||
30 | $this->position = 0; |
||
31 | |||
32 | $this->data = []; |
||
33 | } |
||
34 | |||
69 |