Skip to content

Commit adb37b8

Browse files
author
Simon Berger
committed
change test
1 parent 99fb448 commit adb37b8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/fixed/doc-comment-spacing.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ public function c(iterable $foo): void
5858
*
5959
* @param int[] $foo
6060
* @param int[] $bar
61-
* @psalm-param array<int, string> $bar
62-
* @phpstan-param array<int, string> $bar
61+
* @psalm-param array<string, int> $foo
62+
* @phpstan-param array<string, int> $foo
6363
*
6464
* @return int[]
65-
* @psalm-return array<int, string>
66-
* @phpstan-return array<int, string>
65+
* @psalm-return array<string, int>
66+
* @phpstan-return array<string, int>
6767
*
6868
* @throws FooException
6969
* @throws BarException

tests/input/doc-comment-spacing.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ public function c(iterable $foo): void
5757
* @PHPCR\Field
5858
* @ODM\Column
5959
* @ORM\Column
60-
* @psalm-param array<int, string> $bar
61-
* @phpstan-return array<int, string>
62-
* @phpstan-param array<int, string> $bar
63-
* @psalm-return array<int, string>
60+
* @psalm-param array<string, int> $foo
61+
* @phpstan-return array<string, int>
62+
* @phpstan-param array<string, int> $foo
63+
* @psalm-return array<string, int>
6464
* @see other
6565
*
6666
*/

0 commit comments

Comments
 (0)