blob: 427f61bf5ff7e19cd11dafda51dbe77afaf00762 [file] [log] [blame]
<?php
namespace Illuminate\Contracts\Queue;
interface ClearableQueue
{
/**
* Delete all of the jobs from the queue.
*
* @param string $queue
* @return int
*/
public function clear($queue);
}