InvalidHandler.php 180 B

123456789101112
  1. <?php
  2. namespace Test\Michel\PQueue\Extra;
  3. class InvalidHandler
  4. {
  5. public function __invoke(TestMessage $message, bool $anotherArg)
  6. {
  7. // Invalid signature
  8. }
  9. }