osb/app/Interfaces/ServiceUsage.php
2022-04-20 16:28:54 +10:00

23 lines
351 B
PHP

<?php
namespace App\Interfaces;
use Illuminate\Support\Collection;
interface ServiceUsage
{
/**
* Our model that holds traffic information
*
* @return mixed
*/
public function traffic();
/**
* This service provides usage information
*
* @param int $days
* @return Collection
*/
public function usage(int $days): Collection;
}