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

orderAscending() public method

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