OpenSkill\Datatable\Columns\ColumnConfigurationBuilder::checkOrderable PHP Method

checkOrderable() private method

Will check if the orderable flag is correctly set, otherwise it will be set to the default NONE
private checkOrderable ( )
    private function checkOrderable()
    {
        if ($this->orderable == null) {
            $this->orderable = Orderable::BOTH();
        }
    }