From 4ce62ca798499494f22f712c98693c3b0044af2e Mon Sep 17 00:00:00 2001 From: Jasper Tey Date: Sun, 7 Apr 2024 12:39:20 -0400 Subject: [PATCH] Update examples. --- CHANGELOG.md | 6 +++--- README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 313c2fe..800be74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,9 +17,9 @@ php artisan ddd:provider Invoicing:InvoiceServiceProvider php artisan ddd:provider Invoicing:/InvoiceServiceProvider # -> Domain\Invoicing\InvoiceServiceProvider -# Generate -php artisan ddd:provider Invoicing:/InvoiceServiceProvider -# -> Domain\Invoicing\InvoiceServiceProvider +# Generate an event inside the Models namespace (hypothetical) +php artisan ddd:event Invoicing:/Models/EventDoesNotBelongHere +# -> Domain\Invoicing\Models\EventDoesNotBelongHere # Deep nesting is supported php artisan ddd:exception Invoicing:/Models/Exceptions/InvoiceNotFoundException diff --git a/README.md b/README.md index 2956b2d..c2f2d84 100644 --- a/README.md +++ b/README.md @@ -156,9 +156,9 @@ php artisan ddd:provider Invoicing:InvoiceServiceProvider php artisan ddd:provider Invoicing:/InvoiceServiceProvider # -> Domain\Invoicing\InvoiceServiceProvider -# Generate -php artisan ddd:provider Invoicing:/InvoiceServiceProvider -# -> Domain\Invoicing\InvoiceServiceProvider +# Generate an event inside the Models namespace (hypothetical) +php artisan ddd:event Invoicing:/Models/EventDoesNotBelongHere +# -> Domain\Invoicing\Models\EventDoesNotBelongHere # Deep nesting is supported php artisan ddd:exception Invoicing:/Models/Exceptions/InvoiceNotFoundException