mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-23 14:26:58 +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;
|
||
|
}
|