| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Contracts; |
| 4 |
|
| 5 |
use App\Billingo\Api\BillingoApi; |
| 6 |
use App\Billingo\Models\BillingoModel; |
| 7 |
use App\Billingo\Service\BillingoCollection; |
| 8 |
use Closure; |
| 9 |
|
| 10 |
interface BillingoQueryInterface |
| 11 |
{ |
| 12 |
public function getData(): null|array|BillingoModel|BillingoCollection; |
| 13 |
|
| 14 |
public function getFilters(): array; |
| 15 |
|
| 16 |
public function getOwner(): string; |
| 17 |
} |
| 18 |
|