Skip to content

Commit 419b41a

Browse files
committed
docs: make file paths bold
1 parent c25ca33 commit 419b41a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/install.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Require it with an explicit version constraint allowing its desired stability.
7373
php spark shield:setup
7474
```
7575

76-
2. Configure `app/Config/Email.php` to allow Shield to send emails with the [Email Class](https://codeigniter.com/user_guide/libraries/email.html).
76+
2. Configure **app/Config/Email.php** to allow Shield to send emails with the [Email Class](https://codeigniter.com/user_guide/libraries/email.html).
7777

7878
```php
7979
<?php
@@ -134,7 +134,7 @@ your project.
134134

135135
This requires that all of your controllers extend the `BaseController`, but that's a good practice anyway.
136136

137-
3. **Routes Setup** The default auth routes can be setup with a single call in `app/Config/Routes.php`:
137+
3. **Routes Setup** The default auth routes can be setup with a single call in **app/Config/Routes.php**:
138138

139139
```php
140140
service('auth')->routes($routes);
@@ -159,7 +159,7 @@ your project.
159159

160160
1. Use InnoDB, not MyISAM.
161161

162-
6. Configure `app/Config/Email.php` to allow Shield to send emails.
162+
6. Configure **app/Config/Email.php** to allow Shield to send emails.
163163

164164
```php
165165
<?php
@@ -213,7 +213,7 @@ These can be used in any of the [normal filter config settings](https://codeigni
213213
214214
### Protect All Pages
215215

216-
If you want to limit all routes (e.g. `localhost:8080/admin`, `localhost:8080/panel` and ...), you need to add the following code in the `app/Config/Filters.php` file.
216+
If you want to limit all routes (e.g. `localhost:8080/admin`, `localhost:8080/panel` and ...), you need to add the following code in the **app/Config/Filters.php** file.
217217

218218
```php
219219
public $globals = [
@@ -241,7 +241,7 @@ public $filters = [
241241
];
242242
```
243243

244-
> **Note** If you have grouped or changed the default format of the routes, ensure that your code matches the new format(s) in the `App/Config/Filter.php` file.
244+
> **Note** If you have grouped or changed the default format of the routes, ensure that your code matches the new format(s) in the **app/Config/Filter.php** file.
245245
246246
For example, if you configured your routes like so:
247247

@@ -260,4 +260,4 @@ public $globals = [
260260
]
261261
]
262262
```
263-
The same should apply for the Rate Limiting.
263+
The same should apply for the Rate Limiting.

0 commit comments

Comments
 (0)