예제 #1
0
파일: Mapper.php 프로젝트: ytnuk/orm
 public function getTableName() : string
 {
     if (!$this->tableName) {
         $namespace = explode('\\', $this->getReflection()->getNamespaceName());
         array_shift($namespace);
         $this->tableName = Nextras\Orm\StorageReflection\StringHelper::underscore(implode($namespace));
     }
     return $this->tableName ?: parent::getTableName();
 }