custom/plugins/EnnoEmptyCartSW6/EnnoEmptyCartSW6.php line 14

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace EnnoEmptyCartSW6;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  5. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  6. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  7. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  8. use Shopware\Core\System\CustomField\CustomFieldTypes;
  9. use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
  10. use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
  11. class EnnoEmptyCartSW6 extends Plugin
  12. {
  13.   public function getServicesFilePath(): string
  14.       {
  15.           return 'Resources/config/services.xml';
  16.       } 
  17. }