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'];
    }