From 20038f474b5e28a3633ffdb242f48d4e4e27433f Mon Sep 17 00:00:00 2001 From: Krzysztof Rewak Date: Wed, 26 Jan 2022 11:55:13 +0100 Subject: [PATCH] Update readme.md Co-authored-by: Adrian Hopek --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0141c80..d6f2efb 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ ## Architecture Directory structure little differs from a standard Laravel tree. We decided to refactor main `app` directory to better suite our needs. All classes are grouped in for major categories: -* `app/Architecture` for all framework-related stuff like service providers, excpetion handler and more; +* `app/Architecture` for all framework-related stuff like service providers, exception handler and more; * `app/Domain` for all framework-agnostic services related to business logic of the application; * `app/Eloquent` for all database/ORM-related classes like models, observers and scopes; * `app/Infrastructure` for entrypoints to the application: CLI, HTTP and async ones.