mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
14 lines
212 B
PHP
14 lines
212 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Support\Search\QueryParser;
|
|
|
|
interface QueryParserInterface
|
|
{
|
|
/**
|
|
* @return NodeGroup
|
|
*/
|
|
public function parse(string $query): NodeGroup;
|
|
}
|