File tree Expand file tree Collapse file tree 3 files changed +24
-8
lines changed Expand file tree Collapse file tree 3 files changed +24
-8
lines changed Original file line number Diff line number Diff line change 174
174
@ODM\,
175
175
@PHPCR\,
176
176
" />
177
- <element value =" @param" />
178
- <element value =" @return" />
177
+ <element value ="
178
+ @param,
179
+ @psalm-param,
180
+ @phpstan-param,
181
+ " />
182
+ <element value ="
183
+ @return,
184
+ @psalm-return,
185
+ @phpstan-return,
186
+ " />
179
187
<element value =" @throws" />
180
188
</property >
181
189
</properties >
Original file line number Diff line number Diff line change @@ -56,10 +56,14 @@ public function c(iterable $foo): void
56
56
* @PHPCR\Uuid
57
57
* @PHPCR\Field
58
58
*
59
- * @param int[] $foo
60
- * @param int[] $bar
59
+ * @param int[] $foo
60
+ * @param int[] $bar
61
+ * @psalm-param array<string, int> $foo
62
+ * @phpstan-param array<string, int> $foo
61
63
*
62
- * @return int[]
64
+ * @return int[]
65
+ * @psalm-return array<string, int>
66
+ * @phpstan-return array<string, int>
63
67
*
64
68
* @throws FooException
65
69
* @throws BarException
Original file line number Diff line number Diff line change @@ -43,20 +43,24 @@ public function c(iterable $foo): void
43
43
* Description
44
44
* More Description
45
45
* @throws FooException
46
- * @param int[] $foo
46
+ * @param int[] $foo
47
47
* @uses other
48
48
* @throws BarException
49
- * @return int[]
49
+ * @return int[]
50
50
* @ORM\Id
51
51
* @internal
52
52
* @link https://example.com
53
53
* @ODM\Id
54
54
* @deprecated
55
55
* @PHPCR\Uuid
56
- * @param int[] $bar
56
+ * @param int[] $bar
57
57
* @PHPCR\Field
58
58
* @ODM\Column
59
59
* @ORM\Column
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>
60
64
* @see other
61
65
*
62
66
*/
You can’t perform that action at this time.
0 commit comments