Nextras\Orm\Mapper\BaseMapper::getTableName PHP 메소드

getTableName() 공개 메소드

public getTableName ( )
    public function getTableName()
    {
        if (!$this->tableName) {
            $tableName = str_replace('Mapper', '', $this->getReflection()->getShortName());
            $this->tableName = StringHelper::underscore($tableName);
        }
        return $this->tableName;
    }