Skip to content

Commit 440a697

Browse files
authored
fix(appstore): Fix test notification client (#466)
1 parent 7dc4400 commit 440a697

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build:
66
docker build -t imdhemy/liap .
77

88
bash:
9-
docker run --rm -it -v $(PWD):/var/www imdhemy/liap bash
9+
docker run --rm -it --name liap-container -v $(PWD):/var/www imdhemy/liap bash
1010

1111
%:
1212
@:

src/Services/AppStoreTestNotificationServiceBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function sandbox(bool $sandbox): self
109109

110110
protected function createClient(): ClientInterface
111111
{
112-
return $this->sandbox ? ClientFactory::createForITunesSandbox() : ClientFactory::createForITunes();
112+
return $this->sandbox ? ClientFactory::createForStoreKitSandbox() : ClientFactory::createForStoreKit();
113113
}
114114

115115
public function of(array $config): self

0 commit comments

Comments
 (0)