Refatoring : Working state
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
# Architecture
|
||||
|
||||
> **Refactor DDD légère — lots 1 à 3**
|
||||
> **Refactor DDD légère — lots 1 à 4**
|
||||
>
|
||||
> `Post/`, `Category/`, `User/` et `Media/` introduisent maintenant une organisation verticale
|
||||
> `Post/`, `Category/`, `User/`, `Media/` et `Auth/` introduisent maintenant une organisation verticale
|
||||
> `Application / Infrastructure / Http / Domain` pour alléger la lecture et préparer
|
||||
> un découpage plus fin par cas d'usage. Les classes historiques à la racine du domaine
|
||||
> sont conservées comme **ponts de compatibilité** afin de préserver les routes, le conteneur
|
||||
@@ -85,10 +85,10 @@ final class PostService
|
||||
|------------------------------------|---------------------------|------------|
|
||||
| `UserRepositoryInterface` | `PdoUserRepository` | `User/` |
|
||||
| `UserServiceInterface` | `UserApplicationService` | `User/` |
|
||||
| `LoginAttemptRepositoryInterface` | `LoginAttemptRepository` | `Auth/` |
|
||||
| `PasswordResetRepositoryInterface` | `PasswordResetRepository` | `Auth/` |
|
||||
| `PasswordResetServiceInterface` | `PasswordResetService` | `Auth/` |
|
||||
| `AuthServiceInterface` | `AuthService` | `Auth/` |
|
||||
| `LoginAttemptRepositoryInterface` | `PdoLoginAttemptRepository` | `Auth/` |
|
||||
| `PasswordResetRepositoryInterface` | `PdoPasswordResetRepository` | `Auth/` |
|
||||
| `PasswordResetServiceInterface` | `PasswordResetApplicationService` | `Auth/` |
|
||||
| `AuthServiceInterface` | `AuthApplicationService` | `Auth/` |
|
||||
| `PostRepositoryInterface` | `PostRepository` | `Post/` |
|
||||
| `PostServiceInterface` | `PostService` | `Post/` |
|
||||
| `CategoryRepositoryInterface` | `CategoryRepository` | `Category/`|
|
||||
|
||||
Reference in New Issue
Block a user