We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de280c6 commit ed16c93Copy full SHA for ed16c93
src/Implementations/Psr18/Clients.php
@@ -142,7 +142,12 @@ public static function candidates(): CandidatesCollection
142
self::$candidates->add(CandidateEntity::create(
143
package: 'nimbly/shuttle',
144
version: '^1.0',
145
- builder: static fn (string $class = '\Nimbly\Shuttle\Shuttle'): object => new $class(),
+ builder: static fn (string $class = '\Nimbly\Shuttle\Shuttle'): object => new $class(
146
+ requestFactory: Discover::httpRequestFactory(),
147
+ responseFactory: Discover::httpResponseFactory(),
148
+ streamFactory: Discover::httpStreamFactory(),
149
+ uriFactory: Discover::httpUriFactory(),
150
+ ),
151
));
152
153
return self::$candidates;
0 commit comments