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

getEntity() 공개 메소드

Get the entity object.
public getEntity ( ) : ArrayObject | object
리턴 ArrayObject | object
    public function getEntity()
    {
        if (!is_object($this->configuration['entity'])) {
            $entity = $this->configuration['entity'];
            $this->configuration['entity'] = new $entity();
        }
        return $this->configuration['entity'];
    }