PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Exceptions
/
Editing: InvalidPoolItemException.php
<?php declare(strict_types=1); namespace Saloon\Exceptions; class InvalidPoolItemException extends SaloonException { public function __construct() { parent::__construct('You have provided an invalid request type into the pool. The pool instance only accepts instances of Saloon\Http\Request or GuzzleHttp\Promise\PromiseInterface. You may provide an array, a generator or a callable that provides an array or generator.'); } }
SAVE
CANCEL