custom/static-plugins/log-cleaning/src/WexoLogCleaning.php line 13

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Wexo\LogCleaning;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  5. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  6. /**
  7.  * Class WexoLogCleaning
  8.  * @package Wexo\LogCleaning
  9.  */
  10. class WexoLogCleaning extends Plugin
  11. {
  12.     public const CONFIG_PREFIX 'WexoLogCleaning.config.';
  13.     public const LOG_CHANNEL 'log-cleaning.removal';
  14.     public const COMMAND_REMOVE_LOG_FILES 'wexo:logcleaning:remove-log-files';
  15.     /**
  16.      * @param InstallContext $installContext
  17.      */
  18.     public function install(InstallContext $installContext): void
  19.     {
  20.     }
  21.     /**
  22.      * @param UninstallContext $uninstallContext
  23.      */
  24.     public function uninstall(UninstallContext $uninstallContext): void
  25.     {
  26.     }
  27. }