<?php
namespace Illuminate\Contracts\Queue;
interface ClearableQueue
{
/**
* Delete all of the jobs from the queue.
*
* @param string $queue
* @return int
*/
public function clear($queue);
}
For code examples and implementation guides, please refer to the “Examples” section on our developer portal. Go to GitHub Repository