Page MenuHomec4science

SortExpression.php
No OneTemporary

File Metadata

Created
Mon, Nov 4, 14:08

SortExpression.php

<?php
namespace RESTful;
class SortExpression
{
public $name,
$ascending;
public function __construct($field, $ascending = true)
{
$this->field = $field;
$this->ascending = $ascending;
}
}

Event Timeline