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

getStorageReflection() 공개 메소드

    public function getStorageReflection()
    {
        if ($this->storageReflection === null) {
            $this->storageReflection = $this->createStorageReflection();
        }
        return $this->storageReflection;
    }

Usage Example

예제 #1
0
파일: DbalMapper.php 프로젝트: nextras/orm
 /**
  * @return StorageReflection\IStorageReflection
  */
 public function getStorageReflection()
 {
     return parent::getStorageReflection();
 }