Files
SyliusElasticsearchPlugin/src/Controller/RequestDataHandler/SortDataHandlerInterface.php
2022-12-06 07:54:43 +01:00

25 lines
615 B
PHP

<?php
/*
* This file has been created by developers from BitBag.
* Feel free to contact us once you face any issues or want to start
* another great project.
* You can find more information about us on https://bitbag.io and write us
* an email on hello@bitbag.io.
*/
declare(strict_types=1);
namespace BitBag\SyliusElasticsearchPlugin\Controller\RequestDataHandler;
interface SortDataHandlerInterface extends DataHandlerInterface
{
public const ORDER_BY_INDEX = 'order_by';
public const SORT_INDEX = 'sort';
public const SORT_ASC_INDEX = 'asc';
public const SORT_DESC_INDEX = 'desc';
}