lib: Add SimpleQuery::clearOrder()

This commit is contained in:
Eric Lippmann 2015-09-17 17:26:57 +02:00
parent d4c1ca9e18
commit 78989c0aad
1 changed files with 11 additions and 0 deletions

View File

@ -382,6 +382,17 @@ class SimpleQuery implements QueryInterface, Queryable, Iterator
}
}
/**
* Clear the order if any
*
* @return $this
*/
public function clearOrder()
{
$this->order = array();
return $this;
}
/**
* Whether an order is set
*