Skip to content

Commit cbeb64f

Browse files
committed
fix contexts
Signed-off-by: Robert Landers <landers.robert@gmail.com>
1 parent a3e2f38 commit cbeb64f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/OrchestrationContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ public function callActivityInline(Closure $activity): DurableFuture
178178

179179
public function callSubOrchestrator(
180180
string $name,
181-
array $args = [],
182181
?string $instanceId = null,
183182
?RetryOptions $retryOptions = null,
183+
mixed ...$args,
184184
): DurableFuture {
185185
throw new LogicException('Not implemented');
186186
}

src/Testing/DummyOrchestrationContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@ public function lockEntity(EntityId ...$entityId): EntityLock
231231

232232
public function callSubOrchestrator(
233233
string $name,
234-
array $args = [],
235234
?string $instanceId = null,
236235
?RetryOptions $retryOptions = null,
236+
mixed ...$args,
237237
): DurableFuture {
238238
throw new LogicException('Not implemented');
239239
}

0 commit comments

Comments
 (0)