Forgot to include method.

This commit is contained in:
James Cole
2019-12-26 11:22:10 +01:00
parent fc8400cdf9
commit 1b1d510bc0

View File

@@ -21,10 +21,19 @@
namespace FireflyIII\Support\Search;
use Illuminate\Support\Collection;
/**
* Class TransactionSearch
*/
class TransactionSearch implements GenericSearchInterface
{
/**
* @inheritDoc
*/
public function search(): Collection
{
// TODO: Implement search() method.
}
}