| Total Complexity | 2 | 
| Total Lines | 21 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 15 | abstract class Table extends TableAccess implements Middleware | ||
| 16 | { | ||
| 17 | use TableMiddlewareTrait; | ||
| 18 | |||
| 19 | public function __construct(string $tableName) | ||
| 22 | } | ||
| 23 | |||
| 24 | abstract public function onCreateStruct(TableStruct $table):TableStruct; | ||
| 25 | |||
| 26 | /** | ||
| 27 | * 创建表结构 | ||
| 28 | * | ||
| 29 | * @param string $tableName | ||
| 30 | * @return TableStruct | ||
| 31 | */ | ||
| 32 | protected function initStruct(string $tableName):TableStruct | ||
| 38 |