mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 17:31:09 -06:00
50 lines
831 B
PHP
50 lines
831 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Support\Search;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Interface SearchInterface
|
|
*
|
|
* @package FireflyIII\Support\Search
|
|
*/
|
|
interface SearchInterface
|
|
{
|
|
/**
|
|
* @param array $words
|
|
*
|
|
* @return Collection
|
|
*/
|
|
public function searchAccounts(array $words);
|
|
|
|
/**
|
|
* @param array $words
|
|
*
|
|
* @return Collection
|
|
*/
|
|
public function searchBudgets(array $words);
|
|
|
|
/**
|
|
* @param array $words
|
|
*
|
|
* @return Collection
|
|
*/
|
|
public function searchCategories(array $words);
|
|
|
|
/**
|
|
*
|
|
* @param array $words
|
|
*
|
|
* @return Collection
|
|
*/
|
|
public function searchTags(array $words);
|
|
|
|
/**
|
|
* @param array $words
|
|
*
|
|
* @return Collection
|
|
*/
|
|
public function searchTransactions(array $words);
|
|
}
|