Skip to content

Commit b473aa1

Browse files
committed
wip
1 parent 798c606 commit b473aa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Faker.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ public function appStoreTestNotification(array $data = []): Token
9696
$fakeSignKey = InMemory::plainText($this->generateECPrivateKey());
9797

9898
return (new JwtFacade())->issue($alg, $fakeSignKey, static function (Builder $builder) use ($data, $x5c) {
99-
$builder->withHeader('x5c', $x5c);
99+
$builder = $builder->withHeader('x5c', $x5c);
100100

101101
foreach ($data as $key => $value) {
102-
$builder->withClaim($key, $value);
102+
$builder = $builder->withClaim($key, $value);
103103
}
104104

105105
return $builder;

0 commit comments

Comments
 (0)