Prado\Wsat\TWsatARGenerator::_getProperClassName PHP Метод

_getProperClassName() приватный Метод

private _getProperClassName ( $tableName )
    private function _getProperClassName($tableName)
    {
        $table_name_words = str_replace("_", " ", strtolower($tableName));
        $final_conversion = str_replace(" ", "", ucwords($table_name_words));
        return $this->_clasPrefix . $final_conversion . $this->_classSufix;
    }