11 lines
163 B
PHP
11 lines
163 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Repositories\Api\Access\Report;
|
||
|
|
|
||
|
|
interface ReportInterface
|
||
|
|
{
|
||
|
|
public function getReports();
|
||
|
|
|
||
|
|
public function create(array $request);
|
||
|
|
}
|