File "WorkloadRepository.php"
Full Path: /var/www/drive/laravel/horizon/src/Contracts/WorkloadRepository.php
File size: 196 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\Horizon\Contracts;
interface WorkloadRepository
{
/**
* Get the current workload of each queue.
*
* @return array
*/
public function get();
}