| 1 | <?php |
||
| 14 | class OptionRequest extends AbstractModel |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Sorting |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $sorting = 'start_date'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | public function getSorting(): string |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string $sorting |
||
| 34 | */ |
||
| 35 | public function setSorting(string $sorting): void |
||
| 39 | |||
| 40 | } |
||
| 41 |