class
Illuminate
/
Process
/
ProcessPoolResults
You're browsing the documentation for an upcoming version of Laravel. The documentation and features of this release are subject to change.
ProcessPoolResults
Implements
Properties
protected
$results array
The results of the processes.
Default: []
Methods
public
__construct ( array $results ) : void
Create a new process pool result set.
Parameters
- $results array
public
collect ( ) : Illuminate\...\Collection
Get the results as a collection.
public
offsetExists ( $offset ) : bool
Determine if the given array offset exists.
Parameters
- $offset int
public
offsetGet ( $offset ) : mixed
Get the result at the given offset.
Parameters
- $offset int
public
offsetSet ( $offset , $value ) : void
Set the result at the given offset.
Parameters
- $offset int
- $value mixed
public
offsetUnset ( $offset ) : void
Unset the result at the given offset.
Parameters
- $offset int