ClearableQueue.php 228 B

1234567891011121314
  1. <?php
  2. namespace Illuminate\Contracts\Queue;
  3. interface ClearableQueue
  4. {
  5. /**
  6. * Delete all of the jobs from the queue.
  7. *
  8. * @param string $queue
  9. * @return int
  10. */
  11. public function clear($queue);
  12. }