custom/plugins/WbfkDigitalInvoice64/src/WbfkDigitalInvoice.php line 21

Open in your IDE?
  1. <?php
  2. /**
  3.  * WBFK OG
  4.  * Copyright (c) 2024 WBFK OG
  5.  *
  6.  * @copyright  Copyright (c) 2024 WBFK OG (https://wbfk.at)
  7.  * @author     WBFK OG <info@wbfk.at>
  8.  */
  9. declare(strict_types=1);
  10. namespace Wbfk\DigitalInvoice;
  11. if (file_exists(dirname(__DIR__).'/vendor/autoload.php')) {
  12.     require_once dirname(__DIR__).'/vendor/autoload.php';
  13. }
  14. use Shopware\Core\Framework\Plugin;
  15. class WbfkDigitalInvoice extends Plugin
  16. {
  17.     public const PLUGIN_DOMAIN 'WbfkDigitalInvoice';
  18.     public const PLUGIN_CONFIG_DOMAIN self::PLUGIN_DOMAIN.'.config.';
  19. }