Browse Source

Erreur création user

master
Fab 3 years ago
parent
commit
42584c9b04
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      Manager/EntityManager.php

+ 2
- 1
Manager/EntityManager.php View 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…
Cancel
Save