← All changes
|
src/Repositories/interface-table-migration-repository.php
+2
-2
3.2.0
→
4.3.0
View file →
| @@ -59,9 +59,9 @@ | ||
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * Make sure that the required tables for the migration are created. |
| 62 | 62 | * |
| 63 | - * @return bool | |
| 63 | + * @throws Throwable If cannot prepare tables for migration. | |
| 64 | 64 | */ |
| 65 | 65 | public function prepare_tables_for_migration(); |
| 66 | 66 | |
| 67 | 67 | /** |
| @@ -73,9 +73,9 @@ | ||
| 73 | 73 | |
| 74 | 74 | /** |
| 75 | 75 | * Create the table if it doesn't exist. |
| 76 | 76 | * |
| 77 | - * @return bool True if the table was created successfully, false otherwise. | |
| 77 | + * @throws Throwable If the table could not be created. | |
| 78 | 78 | */ |
| 79 | 79 | public function create_table(); |
| 80 | 80 | |
| 81 | 81 | /** |