mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 19:01:58 +00:00
26 lines
428 B
PHP
26 lines
428 B
PHP
![]() |
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace FireflyIII\Repositories\ObjectGroup;
|
||
|
|
||
|
use Illuminate\Support\Collection;
|
||
|
|
||
|
/**
|
||
|
* Interface ObjectGroupRepositoryInterface
|
||
|
*/
|
||
|
interface ObjectGroupRepositoryInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return Collection
|
||
|
*/
|
||
|
public function get(): Collection;
|
||
|
|
||
|
/**
|
||
|
* @param string $query
|
||
|
*
|
||
|
* @return Collection
|
||
|
*/
|
||
|
public function search(string $query): Collection;
|
||
|
|
||
|
}
|