Blast\Orm\Entity\Definition::getEntity PHP Method

getEntity() public method

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