| 1 | <?php |
||
| 7 | class SortField |
||
| 8 | { |
||
| 9 | const SORT_ASCENDING = 'asc'; |
||
| 10 | const SORT_DESCENDING = 'desc'; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $field; |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | private $direction; |
||
| 17 | |||
| 18 | public function __construct(string $field, string $direction) |
||
| 23 | |||
| 24 | public function getField(): string |
||
| 28 | |||
| 29 | public function getDirection(): string |
||
| 33 | } |
||
| 34 |