Ajoute le gestionnaire PersonUpsertHandler et le message UpsertMessage, ainsi que des tests pour la création et la mise à jour des utilisateurs.

This commit is contained in:
Boris Waaub
2026-02-24 16:14:14 +01:00
parent fc9222275c
commit fe734e12c8
3 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ declare(strict_types=1);
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\PersonBundle\Entity\Person\Upsert\Handler;
namespace Chill\PersonBundle\Actions\Upsert\Handler;
use Chill\PersonBundle\Repository\PersonRepository;
use Chill\PersonBundle\Repository\Identifier\PersonIdentifierDefinitionRepository;

View File

@@ -9,7 +9,7 @@ declare(strict_types=1);
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\PersonBundle\Entity\Person\Upsert;
namespace Chill\PersonBundle\Actions\Upsert;
class UpsertMessage
{