custom/plugins/citycampaign/src/CityCampaign.php line 13

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace CityCampaign;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Storefront\Framework\ThemeInterface;
  5. // expect the vendor folder on Shopware store releases
  6. if (file_exists(dirname(__DIR__) . '/vendor/autoload.php')) {
  7.     require_once dirname(__DIR__) . '/vendor/autoload.php';
  8. }
  9. class CityCampaign extends Plugin
  10. {
  11.     public function executeComposerCommands(): bool
  12.     {
  13.         return true;
  14.     }
  15. }