Total Complexity | 5 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | class AbstractTabulatorTool extends RequestHandler |
||
11 | { |
||
12 | protected TabulatorGrid $tabulatorGrid; |
||
13 | |||
14 | protected string $name; |
||
15 | |||
16 | /** |
||
17 | * Get the value of tabulatorGrid |
||
18 | */ |
||
19 | public function getTabulatorGrid(): TabulatorGrid |
||
20 | { |
||
21 | return $this->tabulatorGrid; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Set the value of tabulatorGrid |
||
26 | */ |
||
27 | public function setTabulatorGrid(TabulatorGrid $tabulatorGrid): self |
||
28 | { |
||
29 | $this->tabulatorGrid = $tabulatorGrid; |
||
30 | return $this; |
||
31 | } |
||
32 | |||
33 | public function getName(): string |
||
36 | } |
||
37 | |||
38 | public function setName($name): self |
||
39 | { |
||
40 | $this->name = $name; |
||
41 | return $this; |
||
42 | } |
||
43 | |||
44 | public function Link($action = null) |
||
47 | } |
||
48 | } |
||
49 |