2015-02-27 11:09:23 +01:00
|
|
|
<?php
|
2016-05-20 12:41:23 +02:00
|
|
|
/**
|
|
|
|
* SearchInterface.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-05 06:52:15 +02:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-05-20 12:41:23 +02:00
|
|
|
*/
|
|
|
|
|
2016-02-05 12:08:25 +01:00
|
|
|
declare(strict_types = 1);
|
2015-02-27 11:09:23 +01:00
|
|
|
|
|
|
|
namespace FireflyIII\Support\Search;
|
|
|
|
|
2017-02-05 16:16:15 +01:00
|
|
|
use FireflyIII\User;
|
2015-02-27 11:09:23 +01:00
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface SearchInterface
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Support\Search
|
|
|
|
*/
|
2015-03-29 21:27:51 +02:00
|
|
|
interface SearchInterface
|
|
|
|
{
|
2015-02-27 11:09:23 +01:00
|
|
|
/**
|
|
|
|
* @param array $words
|
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-02-06 10:15:07 +01:00
|
|
|
public function searchAccounts(array $words): Collection;
|
2015-02-27 11:09:23 +01:00
|
|
|
|
2017-02-05 16:16:15 +01:00
|
|
|
/**
|
|
|
|
* @param User $user
|
|
|
|
*/
|
|
|
|
public function setUser(User $user);
|
|
|
|
|
2015-02-27 11:09:23 +01:00
|
|
|
/**
|
|
|
|
* @param array $words
|
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-02-06 10:15:07 +01:00
|
|
|
public function searchBudgets(array $words): Collection;
|
2015-02-27 11:09:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $words
|
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-02-06 10:15:07 +01:00
|
|
|
public function searchCategories(array $words): Collection;
|
2015-02-27 11:09:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param array $words
|
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-02-06 10:15:07 +01:00
|
|
|
public function searchTags(array $words): Collection;
|
2015-02-27 11:09:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $words
|
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-02-06 10:15:07 +01:00
|
|
|
public function searchTransactions(array $words): Collection;
|
2015-03-29 08:14:32 +02:00
|
|
|
}
|