A new endpoint that allows you to search for transfers.

This commit is contained in:
James Cole
2019-10-26 07:49:36 +02:00
parent 6823adc976
commit 8b11afb83f
7 changed files with 405 additions and 0 deletions

View File

@@ -22,7 +22,16 @@
namespace FireflyIII\Support\Search;
use Illuminate\Support\Collection;
/**
* Interface GenericSearchInterface
*/
interface GenericSearchInterface
{
/**
* @return Collection
*/
public function search(): Collection;
}