custom/plugins/HBCTheme/src/HBCTheme.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace HBCTheme;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Storefront\Framework\ThemeInterface;
  5. if (file_exists(dirname(__DIR__) . '/vendor/autoload.php')) {
  6.     require_once dirname(__DIR__) . '/vendor/autoload.php';
  7. }
  8. class HBCTheme extends Plugin implements ThemeInterface
  9. {
  10. }