mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
12 lines
236 B
PHP
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;
|
|
} |