Newscoop\Service\Model\Search\ColumnOrder::orderDescending PHP Method

orderDescending() public method

Set this column to be ordered descending.
public orderDescending ( ) : Newscoop\Service\Model\Search\Column
return Newscoop\Service\Model\Search\Column This instance, used for chaining purposes.
    public function orderDescending()
    {
        $this->order(FALSE);
        return $this;
    }