Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ClearQueueFailuresCommand.php 1015 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace Grav\Plugin\Console;
  3. use Grav\Common\Grav;
  4. use Grav\Console\ConsoleCommand;
  5. use Grav\Plugin\Email\Email;
  6. use Symfony\Component\Console\Input\InputOption;
  7. /**
  8. * Class FlushQueueCommand
  9. * @package Grav\Console\Cli\
  10. * @deprecated 4.0 Switched from Swiftmailer to Symfony/Mailer - No longer supported
  11. */
  12. class ClearQueueFailuresCommand extends ConsoleCommand
  13. {
  14. /** @var array */
  15. protected $options = [];
  16. /**
  17. * @return void
  18. */
  19. protected function configure()
  20. {
  21. $this
  22. ->setName('clear-queue-failures')
  23. ->setAliases(['clearqueue'])
  24. ->setDescription('DEPRECATED: Clears any queue failures that have accumulated')
  25. ->setHelp('The <info>clear-queue-failures</info> command clears any queue failures that have accumulated');
  26. }
  27. /**
  28. * @return int
  29. * @deprecated 4.0 Switched from Swiftmailer to Symfony/Mailer - No longer supported
  30. */
  31. protected function serve()
  32. {
  33. return 0;
  34. }
  35. }