Set and get method for the query's order specification.

Parameters

  • array|string $order

Returns

mixed

Source

						public function order($order = null) {
		if ($order) {
			$this->_config['order'] = $order;
			return $this;
		}
		return $this->_config['order'];
	}