Skip to content

Commit 57c2e0a

Browse files
committed
Merge branch 'master' into start-with-update
# Conflicts: # src/Client/WorkflowClient.php # src/Client/WorkflowClientInterface.php # src/Exception/Client/ServiceClientException.php # src/Interceptor/WorkflowClientCallsInterceptor.php
1 parent d247ebd commit 57c2e0a

File tree

12 files changed

+0
-19
lines changed

12 files changed

+0
-19
lines changed

src/Client/WorkflowOptions.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ public function __construct()
163163
}
164164

165165
/**
166-
*
167166
* @return self return a new {@see self} instance with merged options
168167
*/
169168
public function mergeWith(?MethodRetry $retry = null, ?CronSchedule $cron = null): self

src/Internal/Client/WorkflowStarter.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ public function __construct(
6161
) {}
6262

6363
/**
64-
*
65-
*
6664
* @throws ServiceClientException
6765
* @throws WorkflowExecutionAlreadyStartedException
6866
*/
@@ -84,8 +82,6 @@ public function start(
8482
}
8583

8684
/**
87-
*
88-
*
8985
* @throws ServiceClientException
9086
* @throws WorkflowExecutionAlreadyStartedException
9187
*/

src/Internal/Client/WorkflowStub.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,6 @@ static function (TerminateInput $input) use ($serviceClient, $clientOptions, $de
412412
}
413413

414414
/**
415-
*
416-
*
417415
* @param null|mixed $type
418416
* @throws \Throwable
419417
*/

src/Internal/Marshaller/Marshaller.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ public function __construct(MapperFactoryInterface $mapper, array $matchers = []
3939
}
4040

4141
/**
42-
*
43-
*
4442
* @throws \ReflectionException
4543
*/
4644
public function marshal(object $from): array
@@ -64,8 +62,6 @@ public function marshal(object $from): array
6462
}
6563

6664
/**
67-
*
68-
*
6965
* @throws \ReflectionException
7066
*/
7167
public function unmarshal(array $from, object $to): object

src/Internal/Marshaller/Type/ArrayType.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class ArrayType extends Type implements DetectableTypeInterface, RuleFactoryInte
2727
private ?TypeInterface $type = null;
2828

2929
/**
30-
*
3130
* @throws \ReflectionException
3231
*/
3332
public function __construct(MarshallerInterface $marshaller, MarshallingRule|string|null $typeOrClass = null)

src/Internal/Marshaller/Type/AssocArrayType.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class AssocArrayType extends Type
2929
private ?TypeInterface $type = null;
3030

3131
/**
32-
*
3332
* @throws \ReflectionException
3433
*/
3534
public function __construct(MarshallerInterface $marshaller, MarshallingRule|string|null $typeOrClass = null)

src/Internal/Marshaller/Type/NullableType.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ class NullableType extends Type
2222
private ?TypeInterface $type = null;
2323

2424
/**
25-
*
2625
* @throws \ReflectionException
2726
*/
2827
public function __construct(MarshallerInterface $marshaller, MarshallingRule|string|null $typeOrClass = null)

src/Internal/Marshaller/Type/ObjectType.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ protected function emptyInstance(): object
9797
}
9898

9999
/**
100-
*
101100
* @return TClass
102101
* @throws \ReflectionException
103102
*

src/Internal/Marshaller/Type/Type.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ public function __construct(
2929
) {}
3030

3131
/**
32-
*
3332
* @throws \ReflectionException
3433
*/
3534
protected function ofType(MarshallerInterface $marshaller, MarshallingRule|string $type): ?TypeInterface

src/Internal/Marshaller/TypeFactoryInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ interface TypeFactoryInterface
2222
public function create(string $type, array $args): ?TypeInterface;
2323

2424
/**
25-
*
2625
* @return class-string<TypeInterface>|null
2726
*/
2827
public function detect(?\ReflectionType $type): ?string;

0 commit comments

Comments
 (0)