This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/SearchServices/Parsers/PostSearchParser.php
2014-10-18 18:48:27 +02:00

25 lines
565 B
PHP

<?php
namespace Szurubooru\SearchServices\Parsers;
class PostSearchParser extends AbstractSearchParser
{
protected function createFilter()
{
return new \Szurubooru\SearchServices\PostSearchFilter;
}
protected function decorateFilterFromToken($filter, $token)
{
throw new \BadMethodCallException('Not supported');
}
protected function decorateFilterFromNamedToken($filter, $namedToken)
{
throw new \BadMethodCallException('Not supported');
}
protected function getOrderColumn($token)
{
throw new \BadMethodCallException('Not supported');
}
}