@@ -101,17 +101,11 @@ public static function create(
101101 return new self ($ serviceClient , $ options , $ converter , $ interceptorProvider );
102102 }
103103
104- /**
105- * @inheritDoc
106- */
107104 public function getServiceClient (): ServiceClientInterface
108105 {
109106 return $ this ->client ;
110107 }
111108
112- /**
113- * @inheritDoc
114- */
115109 public function start ($ workflow , ...$ args ): WorkflowRunInterface
116110 {
117111 if ($ workflow instanceof WorkflowProxy && !$ workflow ->hasHandler ()) {
@@ -154,9 +148,6 @@ public function start($workflow, ...$args): WorkflowRunInterface
154148 );
155149 }
156150
157- /**
158- * @inheritDoc
159- */
160151 public function signalWithStart (
161152 $ workflow ,
162153 string $ signal ,
@@ -215,9 +206,6 @@ public function signalWithStart(
215206 );
216207 }
217208
218- /**
219- * @inheritDoc
220- */
221209 #[Deprecated(replacement: '%class%->signalWithStart(%parametersList%) ' )]
222210 public function startWithSignal (
223211 $ workflow ,
@@ -228,9 +216,6 @@ public function startWithSignal(
228216 return $ this ->signalWithStart ($ workflow , $ signal , $ signalArgs , $ startArgs );
229217 }
230218
231- /**
232- * @inheritDoc
233- */
234219 public function updateWithStart (
235220 $ workflow ,
236221 string |UpdateOptions $ update ,
@@ -265,9 +250,6 @@ public function updateWithStart(
265250 : throw $ output ->handle ;
266251 }
267252
268- /**
269- * @inheritDoc
270- */
271253 public function newWorkflowStub (
272254 string $ class ,
273255 ?WorkflowOptions $ options = null ,
@@ -281,9 +263,6 @@ public function newWorkflowStub(
281263 );
282264 }
283265
284- /**
285- * @inheritDoc
286- */
287266 public function newUntypedWorkflowStub (
288267 string $ workflowType ,
289268 ?WorkflowOptions $ options = null ,
@@ -300,9 +279,6 @@ public function newUntypedWorkflowStub(
300279 );
301280 }
302281
303- /**
304- * @inheritDoc
305- */
306282 public function newRunningWorkflowStub (string $ class , string $ workflowID , ?string $ runID = null ): object
307283 {
308284 $ workflow = $ this ->reader ->fromClass ($ class );
@@ -314,9 +290,6 @@ public function newRunningWorkflowStub(string $class, string $workflowID, ?strin
314290 );
315291 }
316292
317- /**
318- * @inheritDoc
319- */
320293 public function newUntypedRunningWorkflowStub (
321294 string $ workflowID ,
322295 ?string $ runID = null ,
@@ -334,17 +307,11 @@ public function newUntypedRunningWorkflowStub(
334307 return $ untyped ;
335308 }
336309
337- /**
338- * @inheritDoc
339- */
340310 public function newActivityCompletionClient (): ActivityCompletionClientInterface
341311 {
342312 return new ActivityCompletionClient ($ this ->client , $ this ->clientOptions , $ this ->converter );
343313 }
344314
345- /**
346- * @inheritDoc
347- */
348315 public function listWorkflowExecutions (
349316 string $ query ,
350317 ?string $ namespace = null ,
@@ -381,9 +348,6 @@ public function listWorkflowExecutions(
381348 return Paginator::createFromGenerator ($ loader ($ request ), $ counter );
382349 }
383350
384- /**
385- * @inheritDoc
386- */
387351 public function countWorkflowExecutions (
388352 string $ query ,
389353 ?string $ namespace = null ,
@@ -399,9 +363,6 @@ public function countWorkflowExecutions(
399363 );
400364 }
401365
402- /**
403- * @inheritDoc
404- */
405366 public function getWorkflowHistory (
406367 WorkflowExecution $ execution ,
407368 ?string $ namespace = null ,
0 commit comments