diff --git a/collections.md b/collections.md index 17641933a6f..e5794876299 100644 --- a/collections.md +++ b/collections.md @@ -3434,7 +3434,6 @@ The `whereNull` method returns items from the collection where the given key is ] */ - #### `wrap()` {.collection-method} diff --git a/errors.md b/errors.md index b87b4f1ef44..3d5fbf1f92f 100644 --- a/errors.md +++ b/errors.md @@ -368,7 +368,6 @@ By default, limits will use the exception's class as the rate limit key. You can }); }) - Of course, you may return a mixture of `Lottery` and `Limit` instances for different exceptions: use App\Exceptions\ApiMonitoringException; diff --git a/helpers.md b/helpers.md index 72724035102..7ba4e6b1a38 100644 --- a/helpers.md +++ b/helpers.md @@ -105,7 +105,6 @@ Laravel includes a variety of global "helper" PHP functions. Many of these funct - ### Paths @@ -244,7 +243,6 @@ The `Arr::add` method adds a given key / value pair to an array if the given key // ['name' => 'Desk', 'price' => 100] - #### `Arr::collapse()` {.collection-method} @@ -1364,7 +1362,6 @@ The `Number::spell` method transforms the given number into a string of words: // quatre-vingt-huit - The `after` argument allows you to specify a value after which all numbers should be spelled out: $number = Number::spell(10, after: 10); diff --git a/horizon.md b/horizon.md index 08319cd5c74..5ad26553a37 100644 --- a/horizon.md +++ b/horizon.md @@ -375,7 +375,6 @@ When retrieving the tags for a queued event listener, Horizon will automatically } } - ## Notifications diff --git a/logging.md b/logging.md index a289763ff95..3d33582d290 100644 --- a/logging.md +++ b/logging.md @@ -417,9 +417,8 @@ If you are using a Monolog handler that is capable of providing its own formatte 'formatter' => 'default', ], - - - #### Monolog Processors + +#### Monolog Processors Monolog can also process messages before logging them. You can create your own processors or use the [existing processors offered by Monolog](https://github.com/Seldaek/monolog/tree/main/src/Monolog/Processor). @@ -443,7 +442,6 @@ If you would like to customize the processors for a `monolog` driver, add a `pro ], ], - ### Creating Custom Channels via Factories diff --git a/middleware.md b/middleware.md index b56ca30820a..5268ebd3428 100644 --- a/middleware.md +++ b/middleware.md @@ -140,7 +140,6 @@ If you would like to manage Laravel's global middleware stack manually, you may ]); }) - ### Assigning Middleware to Routes diff --git a/queues.md b/queues.md index af2aa0b86c1..baf03958e00 100644 --- a/queues.md +++ b/queues.md @@ -572,7 +572,6 @@ class ProviderIsDown { // ... - public function middleware(): array { return [ @@ -585,7 +584,6 @@ class ProviderIsUp { // ... - public function middleware(): array { return [ diff --git a/releases.md b/releases.md index 6a3663c05ed..692cbfb16f3 100644 --- a/releases.md +++ b/releases.md @@ -21,7 +21,6 @@ When referencing the Laravel framework or its components from your application o For all Laravel releases, bug fixes are provided for 18 months and security fixes are provided for 2 years. For all additional libraries, including Lumen, only the latest major release receives bug fixes. In addition, please review the database versions [supported by Laravel](/docs/{{version}}/database#introduction). -
| Version | PHP (*) | Release | Bug Fixes Until | Security Fixes Until | diff --git a/scheduling.md b/scheduling.md index 3c472d87ffc..5ef90e01c73 100644 --- a/scheduling.md +++ b/scheduling.md @@ -343,7 +343,6 @@ Schedule::call(fn () => User::resetApiRequestCount()) ->onOneServer(); ``` - ### Background Tasks diff --git a/strings.md b/strings.md index 3ba90b62e65..661faf47915 100644 --- a/strings.md +++ b/strings.md @@ -460,7 +460,6 @@ The `Str::endsWith` method determines if the given string ends with the given va // true - You may also pass an array of values to determine if the given string ends with any of the values in the array: use Illuminate\Support\Str; @@ -1895,7 +1894,6 @@ The `isEmpty` method determines if the given string is empty: The `isNotEmpty` method determines if the given string is not empty: - use Illuminate\Support\Str; $result = Str::of(' ')->trim()->isNotEmpty(); @@ -1996,7 +1994,6 @@ The `lcfirst` method returns the given string with the first character lowercase // foo Bar - #### `length` {.collection-method} diff --git a/validation.md b/validation.md index c73f5079073..b77486a7bdf 100644 --- a/validation.md +++ b/validation.md @@ -1544,23 +1544,23 @@ The field under validation must be a multiple of _value_. The field under validation must not be present in the input data. - - #### missing_if:_anotherfield_,_value_,... + +#### missing_if:_anotherfield_,_value_,... The field under validation must not be present if the _anotherfield_ field is equal to any _value_. - - #### missing_unless:_anotherfield_,_value_ + +#### missing_unless:_anotherfield_,_value_ The field under validation must not be present unless the _anotherfield_ field is equal to any _value_. - - #### missing_with:_foo_,_bar_,... + +#### missing_with:_foo_,_bar_,... The field under validation must not be present _only if_ any of the other specified fields are present. - - #### missing_with_all:_foo_,_bar_,... + +#### missing_with_all:_foo_,_bar_,... The field under validation must not be present _only if_ all of the other specified fields are present.