mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-17 07:08:19 +00:00
14 lines
205 B
PHP
14 lines
205 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace FireflyIII\Support\Search\QueryParser;
|
||
|
|
|
||
|
|
interface QueryParserInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return Node[]
|
||
|
|
*/
|
||
|
|
public function parse(string $query): array;
|
||
|
|
}
|