Skip to content

Commit 6fd565b

Browse files
Merge branch '8.5' into 9.6
* 8.5: Fix CS/WS issues Update tools
2 parents afa28c2 + bfdb0d4 commit 6fd565b

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.phive/phars.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
33
<phar name="phpab" version="^1.29" installed="1.29.4" location="./tools/phpab" copy="true"/>
4-
<phar name="php-cs-fixer" version="^3.94" installed="3.94.2" location="./tools/php-cs-fixer" copy="true"/>
4+
<phar name="php-cs-fixer" version="^3.94" installed="3.95.1" location="./tools/php-cs-fixer" copy="true"/>
55
<phar name="psalm" version="^5.26" installed="5.26.1" location="./tools/psalm" copy="true"/>
66
<phar name="humbug/php-scoper" version="^0.18" installed="0.18.19" location="./tools/php-scoper" copy="true"/>
7-
<phar name="composer" version="^2.8" installed="2.9.5" location="./tools/composer" copy="true"/>
7+
<phar name="composer" version="^2.8" installed="2.10.0-RC1" location="./tools/composer" copy="true"/>
88
</phive>

src/Util/Annotation/DocBlock.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ final class DocBlock
8686
/**
8787
* @var null|array<string, mixed>
8888
*
89-
* @psalm-var null|(array{
89+
* @psalm-var null|(array<
90+
* string,
91+
* array<int|string, string>|array{constraint: string}|array{version: string, operator: string}|string
92+
* >&array{
9093
* __OFFSET: array<string, int>&array{__FILE: string},
9194
* setting?: array<string, string>,
9295
* extension_versions?: array<string, array{version: string, operator: string}>
93-
* }&array<
94-
* string,
95-
* string|array{version: string, operator: string}|array{constraint: string}|array<int|string, string>
96-
* >)
96+
* })
9797
*/
9898
private $parsedRequirements;
9999

src/Util/VersionComparisonOperator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
final class VersionComparisonOperator
2121
{
2222
/**
23-
* @psalm-var '<'|'lt'|'<='|'le'|'>'|'gt'|'>='|'ge'|'=='|'='|'eq'|'!='|'<>'|'ne'
23+
* @psalm-var '!='|'<'|'<='|'<>'|'='|'=='|'>'|'>='|'eq'|'ge'|'gt'|'le'|'lt'|'ne'
2424
*/
2525
private $operator;
2626

tests/unit/Framework/AssertTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2180,8 +2180,8 @@ protected function sameValues(): array
21802180
[-INF, -INF],
21812181
// arrays
21822182
[[], []],
2183-
[[0 => 1], [0 => 1]],
2184-
[[0 => null], [0 => null]],
2183+
[[0 => 1], [0 => 1]],
2184+
[[0 => null], [0 => null]],
21852185
[['a', 'b' => [1, 2]], ['a', 'b' => [1, 2]]],
21862186
// objects
21872187
[$object, $object],
@@ -2243,7 +2243,7 @@ protected function notEqualValues(): array
22432243
[[], [0 => 1]],
22442244
[[0 => 1], []],
22452245
[[0 => null], []],
2246-
[[0 => 1, 1 => 2], [0 => 1, 1 => 3]],
2246+
[[0 => 1, 1 => 2], [0 => 1, 1 => 3]],
22472247
[['a', 'b' => [1, 2]], ['a', 'b' => [2, 1]]],
22482248
// objects
22492249
[new SampleClass(4, 8, 15), new SampleClass(16, 23, 42)],

tools/composer

102 KB
Binary file not shown.

tools/php-cs-fixer

52.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)