Skip to content

[12.x] standardize ellipsis usage #10187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion broadcasting.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ If you customize the broadcast name using the `broadcastAs` method, you should m

```javascript
.listen('.server.created', function (e) {
....
// ...
});
```

Expand Down
4 changes: 2 additions & 2 deletions passport.md
Original file line number Diff line number Diff line change
Expand Up @@ -853,15 +853,15 @@ Then, attach the middleware to a route:

```php
Route::get('/orders', function (Request $request) {
...
// ...
})->middleware('client');
```

To restrict access to the route to specific scopes, you may provide a comma-delimited list of the required scopes when attaching the `client` middleware to the route:

```php
Route::get('/orders', function (Request $request) {
...
// ...
})->middleware('client:check-status,your-scope');
```

Expand Down
4 changes: 2 additions & 2 deletions queues.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ use Illuminate\Contracts\Queue\ShouldBeUnique;

class UpdateSearchIndex implements ShouldQueue, ShouldBeUnique
{
...
// ...
}
```

Expand Down Expand Up @@ -363,7 +363,7 @@ use Illuminate\Support\Facades\Cache;

class UpdateSearchIndex implements ShouldQueue, ShouldBeUnique
{
...
// ...

/**
* Get the cache driver for the unique job lock.
Expand Down
2 changes: 1 addition & 1 deletion reverb.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ use Laravel\Reverb\Pulse\Recorders\ReverbMessages;
'sample_rate' => 1,
],

...
// ...
],
```

Expand Down
16 changes: 8 additions & 8 deletions telescope.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Telescope "watchers" gather application data when a request or console command i
'watchers' => [
Watchers\CacheWatcher::class => true,
Watchers\CommandWatcher::class => true,
...
// ...
],
```

Expand All @@ -288,7 +288,7 @@ Some watchers also allow you to provide additional customization options:
'enabled' => env('TELESCOPE_QUERY_WATCHER', true),
'slow' => 100,
],
...
// ...
],
```

Expand All @@ -313,7 +313,7 @@ The command watcher records the arguments, options, exit code, and output whenev
'enabled' => env('TELESCOPE_COMMAND_WATCHER', true),
'ignore' => ['key:generate'],
],
...
// ...
],
```

Expand Down Expand Up @@ -343,7 +343,7 @@ The gate watcher records the data and result of [gate and policy](/docs/{{versio
'enabled' => env('TELESCOPE_GATE_WATCHER', true),
'ignore_abilities' => ['viewNova'],
],
...
// ...
],
```

Expand Down Expand Up @@ -391,7 +391,7 @@ The model watcher records model changes whenever an Eloquent [model event](/docs
'enabled' => env('TELESCOPE_MODEL_WATCHER', true),
'events' => ['eloquent.created*', 'eloquent.updated*'],
],
...
// ...
],
```

Expand All @@ -404,7 +404,7 @@ If you would like to record the number of models hydrated during a given request
'events' => ['eloquent.created*', 'eloquent.updated*'],
'hydrations' => true,
],
...
// ...
],
```

Expand All @@ -424,7 +424,7 @@ The query watcher records the raw SQL, bindings, and execution time for all quer
'enabled' => env('TELESCOPE_QUERY_WATCHER', true),
'slow' => 50,
],
...
// ...
],
```

Expand All @@ -444,7 +444,7 @@ The request watcher records the request, headers, session, and response data ass
'enabled' => env('TELESCOPE_REQUEST_WATCHER', true),
'size_limit' => env('TELESCOPE_RESPONSE_SIZE_LIMIT', 64),
],
...
// ...
],
```

Expand Down