zlibproxy/vendor/illuminate/contracts/Queue/ClearableQueue.php

15 lines
228 B
PHP
Raw Normal View History

2023-01-02 12:56:44 +01:00
<?php
namespace Illuminate\Contracts\Queue;
interface ClearableQueue
{
/**
* Delete all of the jobs from the queue.
*
* @param string $queue
* @return int
*/
public function clear($queue);
}