mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
13 lines
260 B
PHP
13 lines
260 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Import\Quickbooks\Contracts;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface RepositoryInterface
|
|
{
|
|
public function get(int $max = 100): Collection;
|
|
public function all(): Collection;
|
|
public function count(): int;
|
|
}
|