Skip to content

Commit 99deec9

Browse files
authored
Upgrade CI tools versions (#1098)
* Upgrade php-cs-fixer to 3.1.0 * Upgrade psalm to 4.10.0 * Upgrade phpstan to 0.12.98 * Fiix psalm
1 parent 2620394 commit 99deec9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Input/InvocationRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ final class InvocationRequest extends Input
2323
/**
2424
* Choose from the following options.
2525
*
26-
* @var null|InvocationType::*
26+
* @var InvocationType::*|null
2727
*/
2828
private $invocationType;
2929

3030
/**
3131
* Set to `Tail` to include the execution log in the response.
3232
*
33-
* @var null|LogType::*
33+
* @var LogType::*|null
3434
*/
3535
private $logType;
3636

src/Input/ListFunctionsRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ final class ListFunctionsRequest extends Input
2222
/**
2323
* Set to `ALL` to include entries for all published versions of each function.
2424
*
25-
* @var null|FunctionVersion::*
25+
* @var FunctionVersion::*|null
2626
*/
2727
private $functionVersion;
2828

src/Input/ListLayerVersionsRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ final class ListLayerVersionsRequest extends Input
1313
/**
1414
* A runtime identifier. For example, `go1.x`.
1515
*
16-
* @var null|Runtime::*
16+
* @var Runtime::*|null
1717
*/
1818
private $compatibleRuntime;
1919

src/Input/PublishLayerVersionRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ final class PublishLayerVersionRequest extends Input
4141
*
4242
* @see https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
4343
*
44-
* @var null|list<Runtime::*>
44+
* @var list<Runtime::*>|null
4545
*/
4646
private $compatibleRuntimes;
4747

0 commit comments

Comments
 (0)