Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Update readme.md #13

Merged
merged 2 commits into from
Feb 13, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ components, currenly holds the `ServiceProvider` which is the link between the s
You might never need or use this directory for anything else, but in case you encountered a case where a class
needs to be shared across all components and does belong in any, feel free to use this one.

Evey service must be registered inside the foundation's service provider after being created for laravel to know about it,
Every service must be registered inside the foundation's service provider after being created for laravel to know about it,
simply add `$this->app->register([service name]ServiceProvider::class);` to the `register` methods of the
foundation's `ServiceProvider`. For example, with an Api Service:

Expand Down Expand Up @@ -361,7 +361,7 @@ The **Api** directory will initially contain the following directories:

```
src/Services/Api
├── Console # Eveything that has to do with the Console (i.e. Commands)
├── Console # Everything that has to do with the Console (i.e. Commands)
├── Features # Contains the Api's Features classes
├── Http # Routes, controllers and middlewares
├── Providers # Service providers and binding
Expand Down