Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class UpdateTable |
||
8 | { |
||
9 | private string $target = ''; |
||
10 | |||
11 | private string $function = 'process'; |
||
12 | |||
13 | public function getTarget(): string |
||
14 | { |
||
15 | return $this->target; |
||
16 | } |
||
17 | |||
18 | public function setTarget(string $target): void |
||
19 | { |
||
20 | $this->target = $target; |
||
21 | } |
||
22 | |||
23 | public function getFunction(): string |
||
24 | { |
||
25 | return $this->function; |
||
26 | } |
||
27 | |||
28 | public function setFunction(string $function): void |
||
31 | } |
||
32 | } |
||
33 |