Renaming of classes, making true recursive structure

This commit is contained in:
Sobuno
2025-01-02 23:19:21 +01:00
parent 2ae3929dd6
commit af7a4b5d3d
7 changed files with 66 additions and 52 deletions

View File

@@ -7,7 +7,7 @@ namespace FireflyIII\Support\Search\QueryParser;
interface QueryParserInterface
{
/**
* @return Node[]
* @return NodeGroup
*/
public function parse(string $query): array;
public function parse(string $query): NodeGroup;
}