Blast\Orm\Entity\Definition::getEntity PHP Méthode

getEntity() public méthode

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