Files
firefly-iii/app/Support/Search/QueryParser/QueryParserInterface.php

14 lines
212 B
PHP
Raw Normal View History

2025-01-02 22:17:56 +01:00
<?php
declare(strict_types=1);
namespace FireflyIII\Support\Search\QueryParser;
interface QueryParserInterface
{
/**
* @return NodeGroup
2025-01-02 22:17:56 +01:00
*/
public function parse(string $query): NodeGroup;
2025-01-02 22:17:56 +01:00
}