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

checkSearchable() private method

Will check if the searchable flag is correctly set, if not it will be set to the default NONE
private checkSearchable ( )
    private function checkSearchable()
    {
        if ($this->searchable == null) {
            $this->searchable = Searchable::NORMAL();
        }
    }