Sfoglia il codice sorgente

Erreur création user

master
Fab 3 anni fa
parent
commit
42584c9b04
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      Manager/EntityManager.php

+ 2
- 1
Manager/EntityManager.php Vedi File

@@ -32,7 +32,8 @@ class EntityManager

public function new($className)
{
return new $this->getEntityName($className);
$entityName = $this->getEntityName($className);
return new $entityName;
}

public function create(EntityInterface $entity): self

Loading…
Annulla
Salva