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 7dc4400 commit 440a697Copy full SHA for 440a697
makefile
@@ -6,7 +6,7 @@ build:
6
docker build -t imdhemy/liap .
7
8
bash:
9
- docker run --rm -it -v $(PWD):/var/www imdhemy/liap bash
+ docker run --rm -it --name liap-container -v $(PWD):/var/www imdhemy/liap bash
10
11
%:
12
@:
src/Services/AppStoreTestNotificationServiceBuilder.php
@@ -109,7 +109,7 @@ public function sandbox(bool $sandbox): self
109
110
protected function createClient(): ClientInterface
111
{
112
- return $this->sandbox ? ClientFactory::createForITunesSandbox() : ClientFactory::createForITunes();
+ return $this->sandbox ? ClientFactory::createForStoreKitSandbox() : ClientFactory::createForStoreKit();
113
}
114
115
public function of(array $config): self
0 commit comments