Total Complexity | 5 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Update extends Base |
||
6 | { |
||
7 | protected function mountQuery(): void |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * @param array $data |
||
21 | */ |
||
22 | public function update(array $data): static |
||
23 | { |
||
24 | $this->fields = $data; |
||
25 | |||
26 | return $this; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @param array $data |
||
31 | */ |
||
32 | public function exec(): ?int |
||
46 | } |
||
47 | } |
||
49 |