Skip to content
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

update doc block for concurrency classes #54041

Closed
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: 2 additions & 0 deletions src/Illuminate/Concurrency/ConcurrencyManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public function driver($name = null)
*
* @param array $config
* @return \Illuminate\Concurrency\ProcessDriver
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function createProcessDriver(array $config)
{
Expand Down
6 changes: 6 additions & 0 deletions src/Illuminate/Concurrency/ForkDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ class ForkDriver implements Driver
{
/**
* Run the given tasks concurrently and return an array containing the results.
*
* @param Closure|array $tasks
* @return array
*/
public function run(Closure|array $tasks): array
{
Expand All @@ -30,6 +33,9 @@ public function run(Closure|array $tasks): array

/**
* Start the given tasks in the background after the current task has finished.
*
* @param Closure|array $tasks
* @return \Illuminate\Support\Defer\DeferredCallback
*/
public function defer(Closure|array $tasks): DeferredCallback
{
Expand Down
9 changes: 9 additions & 0 deletions src/Illuminate/Concurrency/ProcessDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ class ProcessDriver implements Driver
{
/**
* Create a new process based concurrency driver.
*
* @param ProcessFactory $processFactory
* @return void
*/
public function __construct(protected ProcessFactory $processFactory)
{
Expand All @@ -26,6 +29,9 @@ public function __construct(protected ProcessFactory $processFactory)

/**
* Run the given tasks concurrently and return an array containing the results.
*
* @param Closure|array $tasks
* @return array
*/
public function run(Closure|array $tasks): array
{
Expand Down Expand Up @@ -58,6 +64,9 @@ public function run(Closure|array $tasks): array

/**
* Start the given tasks in the background after the current task has finished.
*
* @param Closure|array $tasks
* @return \Illuminate\Support\Defer\DeferredCallback
*/
public function defer(Closure|array $tasks): DeferredCallback
{
Expand Down
6 changes: 6 additions & 0 deletions src/Illuminate/Concurrency/SyncDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ class SyncDriver implements Driver
{
/**
* Run the given tasks concurrently and return an array containing the results.
*
* @param Closure|array $tasks
* @return array
*/
public function run(Closure|array $tasks): array
{
Expand All @@ -23,6 +26,9 @@ public function run(Closure|array $tasks): array

/**
* Start the given tasks in the background after the current task has finished.
*
* @param Closure|array $tasks
* @return \Illuminate\Support\Defer\DeferredCallback
*/
public function defer(Closure|array $tasks): DeferredCallback
{
Expand Down
Loading