use Symfony\Component\DependencyInjection\ContainerInterface;
trait PluginTestsHelper
{ protected function createPluginService( string
$pluginDir,
string
$projectDir,
EntityRepository
$pluginRepo,
EntityRepository
$languageRepo,
PluginFinder
$pluginFinder ): PluginService
{ return new PluginService( $pluginDir,
$projectDir,
$pluginRepo,
$languageRepo,
$pluginFinder,
new VersionSanitizer() );
} protected function createPlugin( EntityRepository
$pluginRepo,