PluginProbe
seQura / 4.3.0
seQura v4.3.0
4.3.4 4.3.3 4.3.2 4.3.1 trunk 2.0.0 2.0.10 2.0.11 2.0.12 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 3.0.0 3.0.2 3.0.5 3.0.6 3.0.7 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 4.0.0 All 30 releases
← All changes | src/Repositories/interface-table-migration-repository.php +2 -2 3.2.04.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 /**