Skip to content

Commit a15a638

Browse files
Remove outdated upgrade note from Laravel 12 docs (#10433)
1 parent eac0713 commit a15a638

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

‎concurrency.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,6 @@
99

1010
Sometimes you may need to execute several slow tasks which do not depend on one another. In many cases, significant performance improvements can be realized by executing the tasks concurrently. Laravel's `Concurrency` facade provides a simple, convenient API for executing closures concurrently.
1111

12-
<a name="concurrency-compatibility"></a>
13-
#### Concurrency Compatibility
14-
15-
If you upgraded to Laravel 11.x from a Laravel 10.x application, you may need to add the `ConcurrencyServiceProvider` to the `providers` array in your application's `config/app.php` configuration file:
16-
17-
```php
18-
'providers' => ServiceProvider::defaultProviders()->merge([
19-
/*
20-
* Package Service Providers...
21-
*/
22-
Illuminate\Concurrency\ConcurrencyServiceProvider::class, // [tl! add]
23-
24-
/*
25-
* Application Service Providers...
26-
*/
27-
App\Providers\AppServiceProvider::class,
28-
App\Providers\AuthServiceProvider::class,
29-
// App\Providers\BroadcastServiceProvider::class,
30-
App\Providers\EventServiceProvider::class,
31-
App\Providers\RouteServiceProvider::class,
32-
])->toArray(),
33-
```
34-
3512
<a name="how-it-works"></a>
3613
#### How it Works
3714

0 commit comments

Comments
 (0)