. */ declare(strict_types=1); namespace App\Doctrine\Migration; use Symfony\Component\DependencyInjection\ContainerInterface; interface ContainerAwareMigrationInterface { public function setContainer(?ContainerInterface $container = null): void; }