SqlParser\Components\OrderKeyword::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Expression $expr = null, string $type = 'ASC' )
$expr Expression The expression that we are sorting by.
$type string The sorting type.
    public function __construct($expr = null, $type = 'ASC')
    {
        $this->expr = $expr;
        $this->type = $type;
    }