Skip to content

Commit f1bec6a

Browse files
committed
fix links
1 parent 1bf9222 commit f1bec6a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Every Supercharge application (HTTP and console) relies on an `Application`. The
77
You’ll find bootstrapping files for HTTP and console applications inside of the `bootstrap` directory. Both bootstrapping files are used by the `server.ts` and `craft.ts` files (they are in the root of your app directory). Both files then start one of the following apps:
88

99
1. **HTTP Server:** start a web application using an HTTP server
10-
2. **Console:** start a console application using the [Craft CLI](/docs/{{version}}/craft-cli)
10+
2. **Console:** start a console application using the [Craft CLI](/docs/{{version}}/craft-console)
1111

1212

1313
## IoC Container

directory-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Of course, you’re free to modify the application structure. Make sure to updat
99
Supercharge’s directory structure is inspired by the [Laravel](https://laravel.com) PHP framework. We find this directory structure provides a predictable and extensible architecture that is a joy to work with.
1010

1111
```info
12-
New Supercharge applications contain only the needed folders by default. Not adding all folders reduce the project’s noise. Required folders and files are created when extending your application by scaffolding files with the [Craft CLI](/docs/{{version}}/craft-cli).
12+
New Supercharge applications contain only the needed folders by default. Not adding all folders reduce the project’s noise. Required folders and files are created when extending your application by scaffolding files with the [Craft CLI](/docs/{{version}}/craft-console).
1313
```
1414

1515
## Application Directories

events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Supercharge provides you a handy event dispatcher implementing a publish/subscri
66

77
For example, a user registers for your application and you want to send a welcome mail. The route handler shouldn’t wait for the mailer to send the mail. Instead, you can dispatch a `UserRegistered` event to kick off a listener sending the mail.
88

9-
You should put your event classes in the `app/events` directory and listeners into `app/listeners`. Supercharge will automatically pick up events and listeners when your server starts. Both directories may not exist in your application. You can go ahead and create them on your own or let the [Craft CLI](/docs/{{version}}/craft-cli) create them when scaffolding events and listeners.
9+
You should put your event classes in the `app/events` directory and listeners into `app/listeners`. Supercharge will automatically pick up events and listeners when your server starts. Both directories may not exist in your application. You can go ahead and create them on your own or let the [Craft CLI](/docs/{{version}}/craft-console) create them when scaffolding events and listeners.
1010

1111

1212
## Defining Events

0 commit comments

Comments
 (0)