Skip to content

Commit 14465b8

Browse files
committed
Fix CS
1 parent 0a6e2fe commit 14465b8

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

tests/unit/TypeResolverTest.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,14 +1073,20 @@ public function genericsProvider(): array
10731073
'array<key-of<Foo\\Bar::SOME_CONSTANT>, string>',
10741074
new Array_(
10751075
new String_(),
1076-
new KeyOf(new ConstExpression(new Object_(new Fqsen('\\phpDocumentor\\Foo\\Bar')), 'SOME_CONSTANT'))
1076+
new KeyOf(new ConstExpression(
1077+
new Object_(new Fqsen('\\phpDocumentor\\Foo\\Bar')),
1078+
'SOME_CONSTANT'
1079+
))
10771080
),
10781081
],
10791082
[
10801083
'array<value-of<Foo\\Bar::SOME_CONSTANT>, string>',
10811084
new Array_(
10821085
new String_(),
1083-
new ValueOf(new ConstExpression(new Object_(new Fqsen('\\phpDocumentor\\Foo\\Bar')), 'SOME_CONSTANT'))
1086+
new ValueOf(new ConstExpression(
1087+
new Object_(new Fqsen('\\phpDocumentor\\Foo\\Bar')),
1088+
'SOME_CONSTANT'
1089+
))
10841090
),
10851091
],
10861092
[

0 commit comments

Comments
 (0)