1 | <?php |
||
20 | trait StringTableTrait { |
||
21 | |||
22 | /** |
||
23 | * Table. |
||
24 | * |
||
25 | * @var string|null |
||
26 | */ |
||
27 | protected $table; |
||
28 | |||
29 | /** |
||
30 | * Get the table. |
||
31 | * |
||
32 | * @return string|null Returns the table. |
||
33 | */ |
||
34 | public function getTable(): ?string { |
||
37 | |||
38 | /** |
||
39 | * Set the table. |
||
40 | * |
||
41 | * @param string|null $table The table. |
||
42 | * @return self Returns this instance. |
||
43 | */ |
||
44 | public function setTable(?string $table): self { |
||
48 | } |
||
49 |