2024-07-29 16:16:48 -04:00

12 lines
236 B
PHP

<?php
namespace App\Repositories\Import\Quickbooks\Contracts;
use Illuminate\Support\Collection;
interface RepositoryInterface {
function get(int $max = 100): Collection;
function all(): Collection;
function count(): int;
}