1 | <?php |
||
2 | /** |
||
3 | * Created by enea dhack - 12/07/2020 19:30. |
||
4 | */ |
||
5 | |||
6 | namespace Vaened\Searcher\Keywords; |
||
7 | |||
8 | use Vaened\Enum\Enum; |
||
9 | |||
10 | /** |
||
11 | * Class OrderDirection |
||
12 | * |
||
13 | * @package Vaened\Searcher |
||
14 | * @author enea dhack <[email protected]> |
||
15 | * |
||
16 | * @method static OrderDirection ASC() |
||
17 | * @method static OrderDirection DESC() |
||
18 | */ |
||
19 | final class OrderDirection extends Enum |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
20 | { |
||
21 | public const ASC = 'asc'; |
||
22 | |||
23 | public const DESC = 'desc'; |
||
24 | } |
||
25 |