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
 /**
  * @return StorageReflection\IStorageReflection
  */
 public function getStorageReflection()
 {
     return parent::getStorageReflection();
 }