<?php
/**
* WBFK OG
* Copyright (c) 2024 WBFK OG
*
* @copyright Copyright (c) 2024 WBFK OG (https://wbfk.at)
* @author WBFK OG <info@wbfk.at>
*/
declare(strict_types=1);
namespace Wbfk\DigitalInvoice;
if (file_exists(dirname(__DIR__).'/vendor/autoload.php')) {
require_once dirname(__DIR__).'/vendor/autoload.php';
}
use Shopware\Core\Framework\Plugin;
class WbfkDigitalInvoice extends Plugin
{
public const PLUGIN_DOMAIN = 'WbfkDigitalInvoice';
public const PLUGIN_CONFIG_DOMAIN = self::PLUGIN_DOMAIN.'.config.';
}