Skip to content

Commit 1274dad

Browse files
authored
fix code fence language (#10185)
- use "ini" for `.env` examples - use "text" for plain text blocks - remove some empty line breaks at and inside the end of code blocks - add some missing "php" and "shell" entries
1 parent 221277c commit 1274dad

8 files changed

+8
-10
lines changed

context.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Log::info('User authenticated.', ['auth_id' => Auth::id()]);
5656

5757
The written log will contain the `auth_id` passed to the log entry, but it will also contain the context's `url` and `trace_id` as metadata:
5858

59-
```
59+
```text
6060
User authenticated. {"auth_id":27} {"url":"https://example.com/login","trace_id":"e04e1a11-e75c-4db3-b5b5-cfef4ef56697"}
6161
```
6262

@@ -96,7 +96,7 @@ class ProcessPodcast implements ShouldQueue
9696

9797
The resulting log entry would contain the information that was added to the context during the request that originally dispatched the job:
9898

99-
```
99+
```text
100100
Processing podcast. {"podcast_id":95} {"url":"https://example.com/login","trace_id":"e04e1a11-e75c-4db3-b5b5-cfef4ef56697"}
101101
```
102102

dusk.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ By default, this trait will truncate all tables except the `migrations` table. I
234234
* @var array
235235
*/
236236
protected $tablesToTruncate = ['users'];
237-
238237
```
238+
239239
Alternatively, you may define an `$exceptTables` property on your test class to specify which tables should be excluded from truncation:
240240

241241
```php

filesystem.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ composer require league/flysystem-aws-s3-v3 "^3.0" --with-all-dependencies
9999

100100
An S3 disk configuration array is located in your `config/filesystems.php` configuration file. Typically, you should configure your S3 information and credentials using the following environment variables which are referenced by the `config/filesystems.php` configuration file:
101101

102-
```
102+
```ini
103103
AWS_ACCESS_KEY_ID=<your-key-id>
104104
AWS_SECRET_ACCESS_KEY=<your-secret-access-key>
105105
AWS_DEFAULT_REGION=us-east-1

http-tests.md

-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,6 @@ test('asserting an exact json match', function () {
514514
'created' => true,
515515
]);
516516
});
517-
518517
```
519518

520519
```php tab=PHPUnit

pennant.md

-1
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,6 @@ public function boot(): void
11781178
{
11791179
Event::listen(UnexpectedNullScopeEncountered::class, fn () => abort(500));
11801180
}
1181-
11821181
```
11831182

11841183
### `Laravel\Pennant\Events\FeatureUpdated`

pulse.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -476,13 +476,13 @@ PULSE_DB_CONNECTION=pulse
476476
477477
By default, Pulse will store entries directly to the [configured database connection](#using-a-different-database) after the HTTP response has been sent to the client or a job has been processed; however, you may use Pulse's Redis ingest driver to send entries to a Redis stream instead. This can be enabled by configuring the `PULSE_INGEST_DRIVER` environment variable:
478478

479-
```
479+
```ini
480480
PULSE_INGEST_DRIVER=redis
481481
```
482482

483483
Pulse will use your default [Redis connection](/docs/{{version}}/redis#configuration) by default, but you may customize this via the `PULSE_REDIS_CONNECTION` environment variable:
484484

485-
```
485+
```ini
486486
PULSE_REDIS_CONNECTION=pulse
487487
```
488488

redirects.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Redirect responses are instances of the `Illuminate\Http\RedirectResponse` class
1414
Route::get('/dashboard', function () {
1515
return redirect('/home/dashboard');
1616
});
17-
1817
```
18+
1919
Sometimes you may wish to redirect the user to their previous location, such as when a submitted form is invalid. You may do so by using the global `back` helper function. Since this feature utilizes the [session](/docs/{{version}}/session), make sure the route calling the `back` function is using the `web` middleware group or has all of the session middleware applied:
2020

2121
```php

reverb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
You may install Reverb using the `install:broadcasting` Artisan command:
3131

32-
```
32+
```shell
3333
php artisan install:broadcasting
3434
```
3535

0 commit comments

Comments
 (0)