feat(core) : move user entity into core module and repoint security/doctrine (temp legacy alias)
This commit is contained in:
@@ -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;
|
||||
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user