Файл vendor/laravel/framework/src/Illuminate/Contracts/Queue/ClearableQueue.php Вес запакованого файла 157b (157 b) Вес распакованого файла: 228b (228 b) Метод сжатия: 8
<?php
namespace Illuminate\Contracts\Queue;
interface ClearableQueue
{
/**
* Delete all of the jobs from the queue.
*
* @param string $queue
* @return int
*/
public function clear($queue);
}