Total Complexity | 5 |
Total Lines | 84 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Update |
||
12 | { |
||
13 | /** |
||
14 | * @var |
||
15 | */ |
||
16 | private $table; |
||
17 | /** |
||
18 | * @var |
||
19 | */ |
||
20 | private $update; |
||
21 | /** |
||
22 | * @var |
||
23 | */ |
||
24 | private $statements; |
||
25 | /** |
||
26 | * @var |
||
27 | */ |
||
28 | private $result; |
||
29 | /** |
||
30 | * @var |
||
31 | */ |
||
32 | private $error; |
||
33 | /** |
||
34 | * @var |
||
35 | */ |
||
36 | private $terms; |
||
37 | /** |
||
38 | * @var |
||
39 | */ |
||
40 | private $places; |
||
41 | /** |
||
42 | * @var |
||
43 | */ |
||
44 | private $data; |
||
45 | |||
46 | |||
47 | /** |
||
48 | * Update constructor. |
||
49 | */ |
||
50 | public function __construct() |
||
52 | |||
53 | } |
||
54 | |||
55 | /** |
||
56 | * @return mixed |
||
57 | */ |
||
58 | public function getResult() |
||
61 | } |
||
62 | |||
63 | |||
64 | |||
65 | /** |
||
66 | * @param string $table |
||
67 | * @param array $data |
||
68 | * @param string $terms |
||
69 | * @param string $parse |
||
70 | */ |
||
71 | public function update(string $table, array $data, string $terms, string $parse) |
||
101 | } |