Issues (25)

src/Keywords/OrderDirection.php (1 issue)

Labels
Severity
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
A parse error occurred: Syntax error, unexpected T_ENUM, expecting T_STRING or T_NAME_QUALIFIED or T_NAME_FULLY_QUALIFIED or T_NAME_RELATIVE on line 19 at column 35
Loading history...
20
{
21
    public const ASC = 'asc';
22
23
    public const DESC = 'desc';
24
}
25