| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class TableTmp extends AbstractTable |
||
| 9 | { |
||
| 10 | public string $name = 'tmp'; |
||
| 11 | |||
| 12 | public function addForeignConstraints(): void |
||
| 13 | { |
||
| 14 | } |
||
| 15 | |||
| 16 | public function dropForeignConstraints(): void |
||
| 17 | { |
||
| 18 | } |
||
| 19 | |||
| 20 | public function removeInvalidRows(): void |
||
| 21 | { |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * WordPress codex says there must be two spaces between PRIMARY KEY and the key definition. |
||
| 26 | * |
||
| 27 | * @see https://codex.wordpress.org/Creating_Tables_with_Plugins |
||
| 28 | */ |
||
| 29 | public function structure(): string |
||
| 40 | "); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |