diff --git a/.gitignore b/.gitignore index bcdf8d3d..1cb7676d 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ error.log /tests/test_app/config/TestsMigrations/schema-dump-test.lock /tests/test_app/Plugin/TestBlog/config/Migrations/* .phpunit.cache +.ddev # IDE and editor specific files # ################################# diff --git a/templates/bake/config/diff.twig b/templates/bake/config/diff.twig index 377f06e1..2e80a7e3 100644 --- a/templates/bake/config/diff.twig +++ b/templates/bake/config/diff.twig @@ -42,6 +42,7 @@ class {{ name }} extends AbstractMigration {% else %} * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method {% endif %} + * * @return void */ public function up(): void @@ -128,6 +129,7 @@ not empty %} * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/templates/bake/config/skeleton.twig b/templates/bake/config/skeleton.twig index 5e2cbe5f..47a779eb 100644 --- a/templates/bake/config/skeleton.twig +++ b/templates/bake/config/skeleton.twig @@ -43,6 +43,7 @@ class {{ name }} extends AbstractMigration {% else %} * https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method {% endif %} + * * @return void */ public function change(): void diff --git a/templates/bake/config/snapshot.twig b/templates/bake/config/snapshot.twig index 6d721c8b..cb69feb3 100644 --- a/templates/bake/config/snapshot.twig +++ b/templates/bake/config/snapshot.twig @@ -41,6 +41,7 @@ class {{ name }} extends AbstractMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -58,6 +59,7 @@ class {{ name }} extends AbstractMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/addRemove/the_diff_add_remove_mysql.php b/tests/comparisons/Diff/addRemove/the_diff_add_remove_mysql.php index f4d652a1..739adcf3 100644 --- a/tests/comparisons/Diff/addRemove/the_diff_add_remove_mysql.php +++ b/tests/comparisons/Diff/addRemove/the_diff_add_remove_mysql.php @@ -10,6 +10,7 @@ class TheDiffAddRemoveMysql extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -42,6 +43,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/addRemove/the_diff_add_remove_pgsql.php b/tests/comparisons/Diff/addRemove/the_diff_add_remove_pgsql.php index 1c5ec2dd..83166001 100644 --- a/tests/comparisons/Diff/addRemove/the_diff_add_remove_pgsql.php +++ b/tests/comparisons/Diff/addRemove/the_diff_add_remove_pgsql.php @@ -10,6 +10,7 @@ class TheDiffAddRemovePgsql extends AbstractMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -33,6 +34,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/default/the_diff_default_mysql.php b/tests/comparisons/Diff/default/the_diff_default_mysql.php index 0cdf0976..47579e80 100644 --- a/tests/comparisons/Diff/default/the_diff_default_mysql.php +++ b/tests/comparisons/Diff/default/the_diff_default_mysql.php @@ -10,6 +10,7 @@ class TheDiffDefaultMysql extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -147,6 +148,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/default/the_diff_default_pgsql.php b/tests/comparisons/Diff/default/the_diff_default_pgsql.php index d4aa539d..b0b892c8 100644 --- a/tests/comparisons/Diff/default/the_diff_default_pgsql.php +++ b/tests/comparisons/Diff/default/the_diff_default_pgsql.php @@ -10,6 +10,7 @@ class TheDiffDefaultPgsql extends AbstractMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -126,6 +127,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/simple/the_diff_simple_mysql.php b/tests/comparisons/Diff/simple/the_diff_simple_mysql.php index 9e9c50a5..91602b04 100644 --- a/tests/comparisons/Diff/simple/the_diff_simple_mysql.php +++ b/tests/comparisons/Diff/simple/the_diff_simple_mysql.php @@ -10,6 +10,7 @@ class TheDiffSimpleMysql extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -74,6 +75,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/simple/the_diff_simple_pgsql.php b/tests/comparisons/Diff/simple/the_diff_simple_pgsql.php index 1c51b64f..44890917 100644 --- a/tests/comparisons/Diff/simple/the_diff_simple_pgsql.php +++ b/tests/comparisons/Diff/simple/the_diff_simple_pgsql.php @@ -10,6 +10,7 @@ class TheDiffSimplePgsql extends AbstractMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -62,6 +63,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/withAutoIdCompatibleSignedPrimaryKeys/the_diff_with_auto_id_compatible_signed_primary_keys_mysql.php b/tests/comparisons/Diff/withAutoIdCompatibleSignedPrimaryKeys/the_diff_with_auto_id_compatible_signed_primary_keys_mysql.php index bf7a7b3c..32fb6fb8 100644 --- a/tests/comparisons/Diff/withAutoIdCompatibleSignedPrimaryKeys/the_diff_with_auto_id_compatible_signed_primary_keys_mysql.php +++ b/tests/comparisons/Diff/withAutoIdCompatibleSignedPrimaryKeys/the_diff_with_auto_id_compatible_signed_primary_keys_mysql.php @@ -10,6 +10,7 @@ class TheDiffWithAutoIdCompatibleSignedPrimaryKeysMysql extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -25,6 +26,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/withAutoIdIncompatibleSignedPrimaryKeys/the_diff_with_auto_id_incompatible_signed_primary_keys_mysql.php b/tests/comparisons/Diff/withAutoIdIncompatibleSignedPrimaryKeys/the_diff_with_auto_id_incompatible_signed_primary_keys_mysql.php index 4c3f654b..77cd60aa 100644 --- a/tests/comparisons/Diff/withAutoIdIncompatibleSignedPrimaryKeys/the_diff_with_auto_id_incompatible_signed_primary_keys_mysql.php +++ b/tests/comparisons/Diff/withAutoIdIncompatibleSignedPrimaryKeys/the_diff_with_auto_id_incompatible_signed_primary_keys_mysql.php @@ -12,6 +12,7 @@ class TheDiffWithAutoIdIncompatibleSignedPrimaryKeysMysql extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -35,6 +36,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Diff/withAutoIdIncompatibleUnsignedPrimaryKeys/the_diff_with_auto_id_incompatible_unsigned_primary_keys_mysql.php b/tests/comparisons/Diff/withAutoIdIncompatibleUnsignedPrimaryKeys/the_diff_with_auto_id_incompatible_unsigned_primary_keys_mysql.php index a542442f..d1ae3773 100644 --- a/tests/comparisons/Diff/withAutoIdIncompatibleUnsignedPrimaryKeys/the_diff_with_auto_id_incompatible_unsigned_primary_keys_mysql.php +++ b/tests/comparisons/Diff/withAutoIdIncompatibleUnsignedPrimaryKeys/the_diff_with_auto_id_incompatible_unsigned_primary_keys_mysql.php @@ -12,6 +12,7 @@ class TheDiffWithAutoIdIncompatibleUnsignedPrimaryKeysMysql extends BaseMigratio * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -35,6 +36,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/pgsql/test_snapshot_auto_id_disabled_pgsql.php b/tests/comparisons/Migration/pgsql/test_snapshot_auto_id_disabled_pgsql.php index 9a27dcaf..b2596a16 100644 --- a/tests/comparisons/Migration/pgsql/test_snapshot_auto_id_disabled_pgsql.php +++ b/tests/comparisons/Migration/pgsql/test_snapshot_auto_id_disabled_pgsql.php @@ -12,6 +12,7 @@ class TestSnapshotAutoIdDisabledPgsql extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -409,6 +410,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/pgsql/test_snapshot_not_empty_pgsql.php b/tests/comparisons/Migration/pgsql/test_snapshot_not_empty_pgsql.php index 4264411c..4c8ad496 100644 --- a/tests/comparisons/Migration/pgsql/test_snapshot_not_empty_pgsql.php +++ b/tests/comparisons/Migration/pgsql/test_snapshot_not_empty_pgsql.php @@ -10,6 +10,7 @@ class TestSnapshotNotEmptyPgsql extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -349,6 +350,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/pgsql/test_snapshot_plugin_blog_pgsql.php b/tests/comparisons/Migration/pgsql/test_snapshot_plugin_blog_pgsql.php index e2fe20f9..e54c6843 100644 --- a/tests/comparisons/Migration/pgsql/test_snapshot_plugin_blog_pgsql.php +++ b/tests/comparisons/Migration/pgsql/test_snapshot_plugin_blog_pgsql.php @@ -10,6 +10,7 @@ class TestSnapshotPluginBlogPgsql extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -133,6 +134,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/sqlite/test_snapshot_auto_id_disabled_sqlite.php b/tests/comparisons/Migration/sqlite/test_snapshot_auto_id_disabled_sqlite.php index e0dd85ee..1e89cf83 100644 --- a/tests/comparisons/Migration/sqlite/test_snapshot_auto_id_disabled_sqlite.php +++ b/tests/comparisons/Migration/sqlite/test_snapshot_auto_id_disabled_sqlite.php @@ -12,6 +12,7 @@ class TestSnapshotAutoIdDisabledSqlite extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -390,6 +391,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/sqlite/test_snapshot_not_empty_sqlite.php b/tests/comparisons/Migration/sqlite/test_snapshot_not_empty_sqlite.php index aeb316cb..decb7aa8 100644 --- a/tests/comparisons/Migration/sqlite/test_snapshot_not_empty_sqlite.php +++ b/tests/comparisons/Migration/sqlite/test_snapshot_not_empty_sqlite.php @@ -10,6 +10,7 @@ class TestSnapshotNotEmptySqlite extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -330,6 +331,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/sqlite/test_snapshot_plugin_blog_sqlite.php b/tests/comparisons/Migration/sqlite/test_snapshot_plugin_blog_sqlite.php index a83b0e3b..e731f4ac 100644 --- a/tests/comparisons/Migration/sqlite/test_snapshot_plugin_blog_sqlite.php +++ b/tests/comparisons/Migration/sqlite/test_snapshot_plugin_blog_sqlite.php @@ -10,6 +10,7 @@ class TestSnapshotPluginBlogSqlite extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -124,6 +125,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/sqlserver/test_snapshot_auto_id_disabled_sqlserver.php b/tests/comparisons/Migration/sqlserver/test_snapshot_auto_id_disabled_sqlserver.php index 3f4d045d..c9a96297 100644 --- a/tests/comparisons/Migration/sqlserver/test_snapshot_auto_id_disabled_sqlserver.php +++ b/tests/comparisons/Migration/sqlserver/test_snapshot_auto_id_disabled_sqlserver.php @@ -12,6 +12,7 @@ class TestSnapshotAutoIdDisabledSqlserver extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -425,6 +426,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/sqlserver/test_snapshot_not_empty_sqlserver.php b/tests/comparisons/Migration/sqlserver/test_snapshot_not_empty_sqlserver.php index a4b8a00d..6a1b392c 100644 --- a/tests/comparisons/Migration/sqlserver/test_snapshot_not_empty_sqlserver.php +++ b/tests/comparisons/Migration/sqlserver/test_snapshot_not_empty_sqlserver.php @@ -10,6 +10,7 @@ class TestSnapshotNotEmptySqlserver extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -365,6 +366,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/sqlserver/test_snapshot_plugin_blog_sqlserver.php b/tests/comparisons/Migration/sqlserver/test_snapshot_plugin_blog_sqlserver.php index 60d84799..11fbb09e 100644 --- a/tests/comparisons/Migration/sqlserver/test_snapshot_plugin_blog_sqlserver.php +++ b/tests/comparisons/Migration/sqlserver/test_snapshot_plugin_blog_sqlserver.php @@ -10,6 +10,7 @@ class TestSnapshotPluginBlogSqlserver extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -138,6 +139,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/testCreate.php b/tests/comparisons/Migration/testCreate.php index 98225f72..6aee6154 100644 --- a/tests/comparisons/Migration/testCreate.php +++ b/tests/comparisons/Migration/testCreate.php @@ -10,6 +10,7 @@ class CreateUsers extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method + * * @return void */ public function change(): void diff --git a/tests/comparisons/Migration/testCreateDatetime.php b/tests/comparisons/Migration/testCreateDatetime.php index 2846aecf..e9d1da0f 100644 --- a/tests/comparisons/Migration/testCreateDatetime.php +++ b/tests/comparisons/Migration/testCreateDatetime.php @@ -10,6 +10,7 @@ class CreateUsers extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method + * * @return void */ public function change(): void diff --git a/tests/comparisons/Migration/testCreateDropMigration.php b/tests/comparisons/Migration/testCreateDropMigration.php index a7cf2868..c9a567d3 100644 --- a/tests/comparisons/Migration/testCreateDropMigration.php +++ b/tests/comparisons/Migration/testCreateDropMigration.php @@ -10,6 +10,7 @@ class DropUsers extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method + * * @return void */ public function change(): void diff --git a/tests/comparisons/Migration/testCreateFieldLength.php b/tests/comparisons/Migration/testCreateFieldLength.php index 38a6131f..ee3e2882 100644 --- a/tests/comparisons/Migration/testCreateFieldLength.php +++ b/tests/comparisons/Migration/testCreateFieldLength.php @@ -10,6 +10,7 @@ class CreateUsers extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method + * * @return void */ public function change(): void diff --git a/tests/comparisons/Migration/testCreatePhinx.php b/tests/comparisons/Migration/testCreatePhinx.php index b354f24b..e2224a89 100644 --- a/tests/comparisons/Migration/testCreatePhinx.php +++ b/tests/comparisons/Migration/testCreatePhinx.php @@ -10,6 +10,7 @@ class CreateUsers extends AbstractMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method + * * @return void */ public function change(): void diff --git a/tests/comparisons/Migration/testCreatePrimaryKey.php b/tests/comparisons/Migration/testCreatePrimaryKey.php index cec07a2c..d3c64aaa 100644 --- a/tests/comparisons/Migration/testCreatePrimaryKey.php +++ b/tests/comparisons/Migration/testCreatePrimaryKey.php @@ -12,6 +12,7 @@ class CreateUsers extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method + * * @return void */ public function change(): void diff --git a/tests/comparisons/Migration/testCreatePrimaryKeyUuid.php b/tests/comparisons/Migration/testCreatePrimaryKeyUuid.php index 8c7c65d7..c00d1fe5 100644 --- a/tests/comparisons/Migration/testCreatePrimaryKeyUuid.php +++ b/tests/comparisons/Migration/testCreatePrimaryKeyUuid.php @@ -12,6 +12,7 @@ class CreateUsers extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method + * * @return void */ public function change(): void diff --git a/tests/comparisons/Migration/testNoContents.php b/tests/comparisons/Migration/testNoContents.php index dd4b84ce..e22fc6f8 100644 --- a/tests/comparisons/Migration/testNoContents.php +++ b/tests/comparisons/Migration/testNoContents.php @@ -10,6 +10,7 @@ class NoContents extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method + * * @return void */ public function change(): void diff --git a/tests/comparisons/Migration/test_snapshot_auto_id_disabled.php b/tests/comparisons/Migration/test_snapshot_auto_id_disabled.php index 6f472c27..5154610f 100644 --- a/tests/comparisons/Migration/test_snapshot_auto_id_disabled.php +++ b/tests/comparisons/Migration/test_snapshot_auto_id_disabled.php @@ -12,6 +12,7 @@ class TestSnapshotAutoIdDisabled extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -415,6 +416,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/test_snapshot_not_empty.php b/tests/comparisons/Migration/test_snapshot_not_empty.php index 9ddbe426..78a767bf 100644 --- a/tests/comparisons/Migration/test_snapshot_not_empty.php +++ b/tests/comparisons/Migration/test_snapshot_not_empty.php @@ -10,6 +10,7 @@ class TestSnapshotNotEmpty extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -347,6 +348,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/test_snapshot_plugin_blog.php b/tests/comparisons/Migration/test_snapshot_plugin_blog.php index db313050..be48131c 100644 --- a/tests/comparisons/Migration/test_snapshot_plugin_blog.php +++ b/tests/comparisons/Migration/test_snapshot_plugin_blog.php @@ -10,6 +10,7 @@ class TestSnapshotPluginBlog extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -134,6 +135,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/test_snapshot_with_auto_id_compatible_signed_primary_keys.php b/tests/comparisons/Migration/test_snapshot_with_auto_id_compatible_signed_primary_keys.php index 9dfa4a58..7412725b 100644 --- a/tests/comparisons/Migration/test_snapshot_with_auto_id_compatible_signed_primary_keys.php +++ b/tests/comparisons/Migration/test_snapshot_with_auto_id_compatible_signed_primary_keys.php @@ -10,6 +10,7 @@ class TestSnapshotWithAutoIdCompatibleSignedPrimaryKeys extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -38,6 +39,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/test_snapshot_with_auto_id_incompatible_signed_primary_keys.php b/tests/comparisons/Migration/test_snapshot_with_auto_id_incompatible_signed_primary_keys.php index eda7d2e9..423725f4 100644 --- a/tests/comparisons/Migration/test_snapshot_with_auto_id_incompatible_signed_primary_keys.php +++ b/tests/comparisons/Migration/test_snapshot_with_auto_id_incompatible_signed_primary_keys.php @@ -12,6 +12,7 @@ class TestSnapshotWithAutoIdIncompatibleSignedPrimaryKeys extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -48,6 +49,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/test_snapshot_with_auto_id_incompatible_unsigned_primary_keys.php b/tests/comparisons/Migration/test_snapshot_with_auto_id_incompatible_unsigned_primary_keys.php index ec32d7d1..5de4a3df 100644 --- a/tests/comparisons/Migration/test_snapshot_with_auto_id_incompatible_unsigned_primary_keys.php +++ b/tests/comparisons/Migration/test_snapshot_with_auto_id_incompatible_unsigned_primary_keys.php @@ -12,6 +12,7 @@ class TestSnapshotWithAutoIdIncompatibleUnsignedPrimaryKeys extends BaseMigratio * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -48,6 +49,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void diff --git a/tests/comparisons/Migration/test_snapshot_with_non_default_collation.php b/tests/comparisons/Migration/test_snapshot_with_non_default_collation.php index fd7ac164..66861e77 100644 --- a/tests/comparisons/Migration/test_snapshot_with_non_default_collation.php +++ b/tests/comparisons/Migration/test_snapshot_with_non_default_collation.php @@ -10,6 +10,7 @@ class TestSnapshotWithNonDefaultCollation extends BaseMigration * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-up-method + * * @return void */ public function up(): void @@ -39,6 +40,7 @@ public function up(): void * * More information on this method is available here: * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * * @return void */ public function down(): void