12 lines
244 B
PHP
12 lines
244 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Migrations\App;
|
|
|
|
use MailPoet\Migrator\AppMigration;
|
|
|
|
//phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Migration_5 extends AppMigration {
|
|
public function run(): void {
|
|
}
|
|
}
|