lib: Fix PHPDoc of SimpleQuery::getOrder()

This commit is contained in:
Eric Lippmann 2015-09-17 17:30:00 +02:00
parent 747c6f9b0b
commit 5008537683

View File

@ -400,13 +400,13 @@ class SimpleQuery implements QueryInterface, Queryable, Iterator
*/ */
public function hasOrder() public function hasOrder()
{ {
return !empty($this->order); return ! empty($this->order);
} }
/** /**
* Get the order if any * Get the order
* *
* @return array|null * @return array
*/ */
public function getOrder() public function getOrder()
{ {