custom/plugins/banner/src/CityBanner.php line 13

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