Explorar el Código

Erreur création user

master
Fab hace 3 años
padre
commit
42584c9b04
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      Manager/EntityManager.php

+ 2
- 1
Manager/EntityManager.php Ver fichero

@@ -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

Cargando…
Cancelar
Guardar