This repository was archived by the owner on Dec 11, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ components, currenly holds the `ServiceProvider` which is the link between the s
306
306
You might never need or use this directory for anything else, but in case you encountered a case where a class
307
307
needs to be shared across all components and does belong in any, feel free to use this one.
308
308
309
- Evey service must be registered inside the foundation's service provider after being created for laravel to know about it,
309
+ Every service must be registered inside the foundation's service provider after being created for laravel to know about it,
310
310
simply add ` $this->app->register([service name]ServiceProvider::class); ` to the ` register ` methods of the
311
311
foundation's ` ServiceProvider ` . For example, with an Api Service:
312
312
@@ -363,7 +363,7 @@ The **Api** directory will initially contain the following directories:
363
363
364
364
```
365
365
src/Services/Api
366
- ├── Console # Eveything that has to do with the Console (i.e. Commands)
366
+ ├── Console # Everything that has to do with the Console (i.e. Commands)
367
367
├── Features # Contains the Api's Features classes
368
368
├── Http # Routes, controllers and middlewares
369
369
├── Providers # Service providers and binding
You can’t perform that action at this time.
0 commit comments