Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 038387d

Browse files
[12.x] Use straight apostrophes for consistency (#10777)
* Update reverb.md * Update horizon.md * Update dusk.md * Update scheduling.md
1 parent a2152c2 commit 038387d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

‎dusk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2392,7 +2392,7 @@ $browser->visit(new Dashboard)
23922392
<a name="components"></a>
23932393
## Components
23942394

2395-
Components are similar to Dusks "page objects", but are intended for pieces of UI and functionality that are re-used throughout your application, such as a navigation bar or notification window. As such, components are not bound to specific URLs.
2395+
Components are similar to Dusk's "page objects", but are intended for pieces of UI and functionality that are re-used throughout your application, such as a navigation bar or notification window. As such, components are not bound to specific URLs.
23962396

23972397
<a name="generating-components"></a>
23982398
### Generating Components

‎horizon.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ You can define the maximum number of attempts a job can consume within a supervi
179179
180180
Adjusting the `tries` option is essential when using middlewares such as `WithoutOverlapping` or `RateLimited` because they consume attempts. To handle this, adjust the `tries` configuration value either at the supervisor level or by defining the `$tries` property on the job class.
181181

182-
If you dont set the `tries` option, Horizon defaults to a single attempt, unless the job class defines `$tries`, which takes precedence over the Horizon configuration.
182+
If you don't set the `tries` option, Horizon defaults to a single attempt, unless the job class defines `$tries`, which takes precedence over the Horizon configuration.
183183

184184
Setting `tries` or `$tries` to 0 allows unlimited attempts, which is ideal when the number of attempts is uncertain. To prevent endless failures, you can limit the number of exceptions allowed by setting the `$maxExceptions` property on the job class.
185185

@@ -396,7 +396,7 @@ With this configuration, Horizon will assign 10 processes to the `default` queue
396396
<a name="no-balancing"></a>
397397
### No Balancing
398398

399-
When the `balance` option is set to `false`, Horizon processes queues strictly in the order they're listed, similar to Laravels default queue system. However, it will still scale the number of worker processes if jobs begin to accumulate:
399+
When the `balance` option is set to `false`, Horizon processes queues strictly in the order they're listed, similar to Laravel's default queue system. However, it will still scale the number of worker processes if jobs begin to accumulate:
400400

401401
```php
402402
'environments' => [

‎reverb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<a name="introduction"></a>
2323
## Introduction
2424

25-
[Laravel Reverb](https://github.com/laravel/reverb) brings blazing-fast and scalable real-time WebSocket communication directly to your Laravel application, and provides seamless integration with Laravels existing suite of [event broadcasting tools](/docs/{{version}}/broadcasting).
25+
[Laravel Reverb](https://github.com/laravel/reverb) brings blazing-fast and scalable real-time WebSocket communication directly to your Laravel application, and provides seamless integration with Laravel's existing suite of [event broadcasting tools](/docs/{{version}}/broadcasting).
2626

2727
<a name="installation"></a>
2828
## Installation

‎scheduling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ Schedule::command('emails:send')->evenInMaintenanceMode();
422422
<a name="schedule-groups"></a>
423423
### Schedule Groups
424424

425-
When defining multiple scheduled tasks with similar configurations, you can use Laravels task grouping feature to avoid repeating the same settings for each task. Grouping tasks simplifies your code and ensures consistency across related tasks.
425+
When defining multiple scheduled tasks with similar configurations, you can use Laravel's task grouping feature to avoid repeating the same settings for each task. Grouping tasks simplifies your code and ensures consistency across related tasks.
426426

427427
To create a group of scheduled tasks, invoke the desired task configuration methods, followed by the `group` method. The `group` method accepts a closure that is responsible for defining the tasks that share the specified configuration:
428428

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /