mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-11 12:18:08 +00:00
26 lines
505 B
PHP
26 lines
505 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\unit\Support;
|
||
|
|
|
||
|
|
use FireflyIII\Support\Search\QueryParser;
|
||
|
|
use FireflyIII\Support\Search\QueryParserInterface;
|
||
|
|
use Tests\unit\Support\AbstractQueryParserInterfaceParseQueryTest;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @group unit-test
|
||
|
|
* @group support
|
||
|
|
* @group navigation
|
||
|
|
*
|
||
|
|
* @internal
|
||
|
|
*
|
||
|
|
* @coversNothing
|
||
|
|
*/
|
||
|
|
final class QueryParserParseQueryTest extends AbstractQueryParserInterfaceParseQueryTest
|
||
|
|
{
|
||
|
|
protected function createParser(): QueryParserInterface
|
||
|
|
{
|
||
|
|
return new QueryParser();
|
||
|
|
}
|
||
|
|
}
|