feat(core) : move user entity into core module and repoint security/doctrine (temp legacy alias)

This commit is contained in:
Matthieu
2026-06-19 16:03:52 +02:00
parent 6ca91cbd3b
commit f8fc4d6bd9
7 changed files with 24 additions and 4 deletions
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Entity;
namespace App\Module\Core\Domain\Entity;
use ApiPlatform\Metadata\ApiProperty;
use ApiPlatform\Metadata\ApiResource;
+8
View File
@@ -0,0 +1,8 @@
<?php
declare(strict_types=1);
use App\Entity\User;
if (!class_exists(User::class, false)) {
class_alias(App\Module\Core\Domain\Entity\User::class, User::class);
}