<?php declare(strict_types=1);namespace Nviim\HaendlerbundApiplugin;use Shopware\Core\Framework\Plugin;use Doctrine\DBAL\Connection;use Shopware\Core\Checkout\Payment\PaymentMethodDefinition;use Shopware\Core\Checkout\Shipping\ShippingMethodDefinition;use Shopware\Core\Content\Media\Aggregate\MediaFolder\MediaFolderDefinition;use Shopware\Core\Content\Media\File\FileSaver;use Shopware\Core\Content\Media\MediaDefinition;use Shopware\Core\Content\Rule\RuleDefinition;use Shopware\Core\Framework\DataAbstractionLayer\EntityRepository;use Shopware\Core\Framework\Log\Package;use Shopware\Core\Framework\Plugin\Context\ActivateContext;use Shopware\Core\Framework\Plugin\Context\DeactivateContext;use Shopware\Core\Framework\Plugin\Context\InstallContext;use Shopware\Core\Framework\Plugin\Context\UninstallContext;use Shopware\Core\Framework\Plugin\Context\UpdateContext;use Shopware\Core\Framework\Plugin\Util\PluginIdProvider;use Shopware\Core\System\CustomField\CustomFieldDefinition;use Shopware\Core\System\SalesChannel\Aggregate\SalesChannelType\SalesChannelTypeDefinition;use Shopware\Core\System\SalesChannel\SalesChannelDefinition;use Shopware\Core\System\SystemConfig\SystemConfigDefinition;use Shopware\Core\System\SystemConfig\SystemConfigService;use Symfony\Component\Config\FileLocator;use Symfony\Component\Config\Loader\DelegatingLoader;use Symfony\Component\Config\Loader\LoaderResolver;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\DependencyInjection\ContainerInterface;use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;use Symfony\Component\DependencyInjection\Loader\DirectoryLoader;use Symfony\Component\DependencyInjection\Loader\GlobFileLoader;use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;class NviimHaendlerbundApiplugin extends Plugin{}