Skip to content

Commit 3a8656d

Browse files
roxblnfkxepozzgithub-actions
authored
Include PHP 8.5 into CI (#684)
* ci: Include PHP 8.5 into the tests matrix * style(php-cs-fixer): fix coding standards * fix: trigger ci --------- Co-authored-by: Dmitrii Derepko <xepozz@list.ru> Co-authored-by: github-actions <github-actions@users.noreply.github.com>
1 parent ba606ba commit 3a8656d

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/run-test-suite.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,12 @@ jobs:
5353
strategy:
5454
fail-fast: ${{ inputs.fail-fast }}
5555
matrix:
56-
php: [ 8.1, 8.2, 8.3, 8.4 ]
56+
php:
57+
- 8.1
58+
- 8.2
59+
- 8.3
60+
- 8.4
61+
- 8.5
5762
os: [ ubuntu-latest ]
5863
extensions-suffix: [ '', ', protobuf' ]
5964
dependencies: [ lowest , highest ]

src/Activity.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ public static function hasHeartbeatDetails(): bool
9595
*
9696
* This method retrieves the payload that was passed into the last call of the {@see Activity::heartbeat()} method.
9797
*
98-
* @param mixed|null $type
9998
* @psalm-param TType $type
10099
* @throws OutOfContextException in the absence of the activity execution context.
101100
*/

src/Client/Update/UpdateHandle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ public function hasResult(): bool
6868
*
6969
* @param int|float|null $timeout Timeout in seconds. Accuracy to milliseconds.
7070
*
71+
* @return ReturnType
7172
* @throws WorkflowUpdateException
7273
* @throws WorkflowUpdateRPCTimeoutOrCanceledException
73-
* @return ReturnType
7474
*/
7575
public function getResult(int|float|null $timeout = null): mixed
7676
{

src/Workflow/WorkflowRunInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ public function getExecution(): WorkflowExecution;
4141
*
4242
* @param string|\ReflectionClass|\ReflectionType|Type|null $type
4343
* @param int|null $timeout Timeout in seconds. Infinite by the default.
44-
* @throws WorkflowFailedException
4544
* @return ReturnType
45+
* @throws WorkflowFailedException
4646
*
4747
* @see DateInterval
4848
*/

0 commit comments

Comments
 (0)