/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Http/Client
NameSizeModeActions
Events/-0755rm
ConnectionException.php1070644editdlrm
Factory.php120510644editdlrm
HttpClientException.php1130644editdlrm
PendingRequest.php260670644editdlrm
Pool.php17430644editdlrm
Request.php64770644editdlrm
RequestException.php11460644editdlrm
Response.php76040644editdlrm
ResponseSequence.php36310644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Http/Client/Pool.php (1743B)
factory = $factory ?: new Factory(); $this->client = $this->factory->buildClient(); } /** * Add a request to the pool with a key. * * @param string $key * @return \Illuminate\Http\Client\PendingRequest */ public function as(string $key) { return $this->pool[$key] = $this->asyncRequest(); } /** * Retrieve a new async pending request. * * @return \Illuminate\Http\Client\PendingRequest */ protected function asyncRequest() { return $this->factory->setClient($this->client)->async(); } /** * Retrieve the requests in the pool. * * @return array */ public function getRequests() { return $this->pool; } /** * Add a request to the pool with a numeric index. * * @param string $method * @param array $parameters * @return \Illuminate\Http\Client\PendingRequest */ public function __call($method, $parameters) { return $this->pool[] = $this->asyncRequest()->$method(...$parameters); } }