mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
43 lines
706 B
PHP
43 lines
706 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sander
|
|
* Date: 21/09/14
|
|
* Time: 20:58
|
|
*/
|
|
|
|
namespace Firefly\Helper\Controllers;
|
|
|
|
/**
|
|
* Interface SearchInterface
|
|
*
|
|
* @package Firefly\Helper\Controllers
|
|
*/
|
|
interface SearchInterface
|
|
{
|
|
/**
|
|
* @param array $words
|
|
*/
|
|
public function searchTransactions(array $words);
|
|
|
|
/**
|
|
* @param array $words
|
|
*/
|
|
public function searchAccounts(array $words);
|
|
|
|
/**
|
|
* @param array $words
|
|
*/
|
|
public function searchCategories(array $words);
|
|
|
|
/**
|
|
* @param array $words
|
|
*/
|
|
public function searchBudgets(array $words);
|
|
|
|
/**
|
|
* @param array $words
|
|
*/
|
|
public function searchTags(array $words);
|
|
|
|
} |