Skip to content

Commit 97bed34

Browse files
committed
typo
1 parent 10e9706 commit 97bed34

File tree

1 file changed

+4
-4
lines changed
  • content/blog/how-did-I-organize-my-last-symfony-project

1 file changed

+4
-4
lines changed

content/blog/how-did-I-organize-my-last-symfony-project/index.en.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ tree src/Domain/Map -L 1
115115
├── MapCreated.php // Event
116116
├── MapId.php // ValueObject
117117
├── MapName.php // ValueObject
118-
├── Map.php // Aggregate root
119-
├── Maps.php // Interface Repository
120-
├── Marker // Dossier pour Marker
118+
├── Map.php // Root Aggregate
119+
├── Maps.php // Repository Interface
120+
├── Marker // All classes to design Marker entity
121121
├── MarkerAddedToMap.php // Event
122-
└── UseCase // Orchestration des cas d’usage
122+
└── UseCase // Use cases orchestration
123123
```
124124

125125
In this folder, we have all the code necessary to design the `Map` aggregate. As you can see, I didn’t organize it by design patterns like `ValueObject`, `Entity`, or something else.

0 commit comments

Comments
 (0)