Skip to content

Commit

Permalink
Update Clients.php
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Dec 4, 2024
1 parent de280c6 commit ed16c93
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Implementations/Psr18/Clients.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,12 @@ public static function candidates(): CandidatesCollection
self::$candidates->add(CandidateEntity::create(
package: 'nimbly/shuttle',
version: '^1.0',
builder: static fn (string $class = '\Nimbly\Shuttle\Shuttle'): object => new $class(),
builder: static fn (string $class = '\Nimbly\Shuttle\Shuttle'): object => new $class(
requestFactory: Discover::httpRequestFactory(),
responseFactory: Discover::httpResponseFactory(),
streamFactory: Discover::httpStreamFactory(),
uriFactory: Discover::httpUriFactory(),
),
));

return self::$candidates;
Expand Down

0 comments on commit ed16c93

Please sign in to comment.