Files
piratepoet/mailpoet/lib/Migrator/MigrationTemplate.php
2022-11-07 10:05:42 +01:00

19 lines
510 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Migrations;
use MailPoet\Migrator\Migration;
class MigrationTemplate extends Migration {
public function run(): void {
/*
* TODO: Implement the migration logic here and remove this comment.
*
* You can use:
* $this->connection For SQL queries using Doctrine DBAL.
* $this->entityManager For operations using Doctrine Entity Manager.
* $this->container For accessing any needed service.
*/
}
}