name: ProcessPoolResults class_comment: null dependencies: - name: ArrayAccess type: class source: ArrayAccess - name: Collection type: class source: Illuminate\Support\Collection properties: - name: results visibility: protected comment: '# * The results of the processes. # * # * @var array' methods: - name: __construct visibility: public parameters: - name: results comment: "# * The results of the processes.\n# *\n# * @var array\n# */\n# protected\ \ $results = [];\n# \n# /**\n# * Create a new process pool result set.\n# *\n\ # * @param array $results\n# * @return void" - name: collect visibility: public parameters: [] comment: '# * Get the results as a collection. # * # * @return \Illuminate\Support\Collection' - name: offsetExists visibility: public parameters: - name: offset comment: '# * Determine if the given array offset exists. # * # * @param int $offset # * @return bool' - name: offsetGet visibility: public parameters: - name: offset comment: '# * Get the result at the given offset. # * # * @param int $offset # * @return mixed' - name: offsetSet visibility: public parameters: - name: offset - name: value comment: '# * Set the result at the given offset. # * # * @param int $offset # * @param mixed $value # * @return void' - name: offsetUnset visibility: public parameters: - name: offset comment: '# * Unset the result at the given offset. # * # * @param int $offset # * @return void' traits: - ArrayAccess - Illuminate\Support\Collection interfaces: - ArrayAccess