Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function bindParam(): array |
||
12 | { |
||
13 | return [ |
||
14 | [ |
||
15 | 'id', |
||
16 | ':id', |
||
17 | 1, |
||
18 | PDO::PARAM_STR, |
||
19 | null, |
||
20 | null, |
||
21 | [ |
||
22 | 'id' => '1', |
||
23 | 'email' => '[email protected]', |
||
24 | 'name' => 'user1', |
||
25 | 'address' => 'address1', |
||
26 | 'status' => '1', |
||
27 | 'profile_id' => '1', |
||
28 | ], |
||
54 |