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

checkName() private method

Will check if the name is empty and throws an exception if that is the case.
private checkName ( )
    private function checkName()
    {
        if (empty($this->name)) {
            throw new \InvalidArgumentException("The name can not be empty");
        }
    }