custom/plugins/TcinnCopyrightCustom/src/TcinnCopyrightCustom.php line 6

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