mirror of
https://github.com/jbcr/SyliusElasticsearchPlugin.git
synced 2026-03-24 00:42:08 +01:00
25 lines
615 B
PHP
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';
|
|
}
|