-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[!!!][TASK] Drop additional namespace segment for the Tea model
The `Product` namespace segment in the domain model namespace `TTN\Tea\Domain\Model` currently serves no purpose and only adds confusion. So let's simplify the extension structure accordingly. (I intended to use this to demonstrate DDD contexts, but never built enough models in the Tea extension for this to actually make sense.) Fixes #1008
- Loading branch information
1 parent
6f9dd4b
commit 90db6d8
Showing
25 changed files
with
84 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","pid","title" | ||
,1,2,"Godesberger Burgtee" | ||
,2,2,"Oolong" |
2 changes: 1 addition & 1 deletion
2
...ository/Fixtures/Product/PersistedTea.csv → ...main/Repository/Fixtures/PersistedTea.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","title" | ||
,1,"Godesberger Burgtee" |
2 changes: 1 addition & 1 deletion
2
...Repository/Fixtures/Product/TeaOnPage.csv → .../Domain/Repository/Fixtures/TeaOnPage.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","pid","title" | ||
,1,1,"Earl Grey" |
2 changes: 1 addition & 1 deletion
2
...Fixtures/Product/TeaWithAllScalarData.csv → ...ository/Fixtures/TeaWithAllScalarData.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","pid","title","description","owner" | ||
,1,1,"Earl Grey","Fresh and hot.",2 |
4 changes: 2 additions & 2 deletions
4
...ository/Fixtures/Product/TeaWithImage.csv → ...main/Repository/Fixtures/TeaWithImage.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","pid","title","image", | ||
,1,1,"Gunpowder",1 | ||
|
||
"sys_file_reference" | ||
,"uid","uid_foreign","tablenames","fieldname" | ||
,1,1,"tx_tea_domain_model_product_tea","image" | ||
,1,1,"tx_tea_domain_model_tea","image" |
2 changes: 1 addition & 1 deletion
2
...ository/Fixtures/Product/TeaWithOwner.csv → ...main/Repository/Fixtures/TeaWithOwner.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","pid","title","owner" | ||
,"1","1","Earl Grey",1 |
2 changes: 1 addition & 1 deletion
2
...tory/Fixtures/Product/TeaWithoutOwner.csv → ...n/Repository/Fixtures/TeaWithoutOwner.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","pid","title","owner" | ||
,1,1,"Earl Grey",0 |
2 changes: 1 addition & 1 deletion
2
...ory/Fixtures/Product/TwoTeasWithOwner.csv → .../Repository/Fixtures/TwoTeasWithOwner.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","pid","title","owner" | ||
,1,1,"Earl Grey",1 | ||
,2,1,"Assam",1 |
2 changes: 1 addition & 1 deletion
2
...tory/Fixtures/Product/TwoUnsortedTeas.csv → ...n/Repository/Fixtures/TwoUnsortedTeas.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"tx_tea_domain_model_product_tea" | ||
"tx_tea_domain_model_tea" | ||
,"uid","pid","title" | ||
,1,1,"Earl Grey" | ||
,2,1,"Assam" |
Oops, something went wrong.