$this->
getContainer()->
get(MigrationCollectionLoader::
class)->
addSource( new MigrationSource( self::
INTEGRATION_IDENTIFIER(),
[__DIR__ . '/_test_migrations_valid' => 'Shopware\Core\Framework\Test\Migration\_test_migrations_valid'
] ) );
$this->
getContainer()->
get(MigrationCollectionLoader::
class)->
addSource( new MigrationSource( self::
INTEGRATION_WITH_EXCEPTION_IDENTIFIER(),
[ __DIR__ . '/_test_migrations_valid' => 'Shopware\Core\Framework\Test\Migration\_test_migrations_valid',
__DIR__ . '/_test_migrations_valid_run_time_exceptions' => 'Shopware\Core\Framework\Test\Migration\_test_migrations_valid_run_time_exceptions',
] ) );
} protected static function INTEGRATION_IDENTIFIER(): string
{ return 'intergration';
}