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