mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 19:47:48 +00:00
22 lines
327 B
PHP
22 lines
327 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 transactions(array $words);
|
||
|
}
|