16 lines
232 B
PHP
Executable File
16 lines
232 B
PHP
Executable File
<?php
|
|
|
|
namespace RESTful;
|
|
|
|
class SortExpression
|
|
{
|
|
public $name,
|
|
$ascending;
|
|
|
|
public function __construct($field, $ascending = true)
|
|
{
|
|
$this->field = $field;
|
|
$this->ascending = $ascending;
|
|
}
|
|
}
|