Skip to content

Commit b25d8dc

Browse files
root-azaroxblnfk
andauthored
Fixed types in WorkflowClientCallsInterceptor (#612)
Co-authored-by: Aleksei Gagarin <roxblnfk@ya.ru>
1 parent e60c9e3 commit b25d8dc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Interceptor/WorkflowClientCallsInterceptor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function update(UpdateInput $input, callable $next): StartUpdateOutput;
7272
public function signalWithStart(SignalWithStartInput $input, callable $next): WorkflowExecution;
7373

7474
/**
75-
* @param callable(UpdateWithStartInput): WorkflowExecution $next
75+
* @param callable(UpdateWithStartInput): UpdateWithStartOutput $next
7676
*/
7777
public function updateWithStart(UpdateWithStartInput $input, callable $next): UpdateWithStartOutput;
7878

@@ -97,7 +97,7 @@ public function cancel(CancelInput $input, callable $next): void;
9797
public function terminate(TerminateInput $input, callable $next): void;
9898

9999
/**
100-
* @param callable(DescribeInput): void $next
100+
* @param callable(DescribeInput): WorkflowExecutionDescription $next
101101
*/
102102
public function describe(DescribeInput $input, callable $next): WorkflowExecutionDescription;
103103
}

0 commit comments

Comments
 (0)