remove registered test implementation exports

This commit is contained in:
Daniel Seifert 2021-04-16 14:20:57 +02:00
parent ff4d316698
commit 88733cad99
Signed by: DanielS
GPG Key ID: 8A7C4C6ED1915C6F
1 changed files with 1 additions and 9 deletions

View File

@ -40,15 +40,7 @@ class Configuration
public function configure()
{
$this->registerExport( self::GROUP_ARTICLES, oxNew( activeArticlesInactiveCategory::class));
$this->registerExport( self::GROUP_ARTICLES, oxNew( articlesWithoutManufacturers::class));
$this->registerExport( self::GROUP_ARTICLES, oxNew( gappedArticleImages::class));
$this->registerExport( self::GROUP_ARTICLES, oxNew( noArticleTextSet::class));
$this->registerExport( self::GROUP_ARTICLES, oxNew( wrongArticlePrice::class));
$this->registerExport( self::GROUP_CATEGORY, oxNew( emptyCategories::class));
$this->registerExport( self::GROUP_CATEGORY, oxNew( inactiveCategories::class));
$this->registerExport( self::GROUP_CATEGORY, oxNew( inactiveParentCategory::class));
$this->registerExport( self::GROUP_REMARKS, oxNew( unreleasedRatings::class));
}
public function registerExport($group, ExportBase $export)