OpenSkill\Datatable\Columns\ColumnConfigurationBuilder::checkName PHP 메소드

checkName() 개인적인 메소드

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");
        }
    }