Blast\Orm\Entity\Definition::getMapper PHP 메소드

getMapper() 공개 메소드

Get entity mapper
public getMapper ( ) : Blast\Orm\MapperInterface
리턴 Blast\Orm\MapperInterface
    public function getMapper()
    {
        if (!$this->configuration['mapper'] instanceof MapperInterface) {
            $this->configuration['mapper'] = $this->createMapper($this);
        }
        return $this->configuration['mapper'];
    }