Added usage graph (ADSL), improved logging for usage collection (ADSL)
This commit is contained in:
16
app/Interfaces/ServiceUsage.php
Normal file
16
app/Interfaces/ServiceUsage.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Interfaces;
|
||||
|
||||
use Illuminate\Support\Collection;
|
||||
|
||||
interface ServiceUsage
|
||||
{
|
||||
/**
|
||||
* This service provides usage information
|
||||
*
|
||||
* @param int $days
|
||||
* @return Collection
|
||||
*/
|
||||
public function usage(int $days): Collection;
|
||||
}
|
Reference in New Issue
Block a user