custom/plugins/sw-asus-account/src/AsusAccount.php line 7

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace HashtagES\AsusAccount;
  3. use Shopware\Core\Framework\Plugin;
  4. class AsusAccount extends Plugin
  5. {
  6.     /**
  7.      * Skip rebuild container on activate/deactivate process
  8.      * to speedup Shopware Cloud bundle integration.
  9.      *
  10.      * @return bool
  11.      */
  12.     public function rebuildContainer(): bool
  13.     {
  14.         return false;
  15.     }
  16. }