Files
piratepoet/mailpoet/tests/unit/Migrator/TestMigrations/Db/Migration_2.php
Rostislav Wolny 5c4dcb77c5 Move all current migrations to Dd folder
[MAILPOET-5416]
2023-07-26 14:01:39 +02:00

12 lines
241 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Migrations\Db;
use MailPoet\Migrator\DbMigration;
//phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
class Migration_2 extends DbMigration {
public function run(): void {
}
}