| 1 | <?php |
||
| 5 | class Sort |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | private $fieldName; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $direction; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string $fieldName |
||
| 19 | * @param string $direction |
||
| 20 | */ |
||
| 21 | 24 | public function __construct($fieldName, $direction) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | 2 | public function getFieldName() |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | 4 | public function getDirection() |
|
| 42 | } |
||
| 43 |