You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/Rules/TypeHints/AbstractMissingTypeHintRule.php
+8-8
Original file line number
Diff line number
Diff line change
@@ -178,9 +178,9 @@ private function analyzeWithTypehint(DebugContextInterface $debugContext, Type $
178
178
if ($phpTypeHintinstanceof ArrayType) {
179
179
if ($docblockWithoutNullableinstanceof MixedType && !$docblockWithoutNullable->isExplicitMixed()) {
180
180
if ($debugContextinstanceof ParameterDebugContext) {
181
-
returnsprintf('%s type is "array". Please provide a @param annotation to further specify the type of the array. For instance: @param int[] $%s', (string) $debugContext, $debugContext->getName());
181
+
returnsprintf('%s type is "array". Please provide a @param annotation to further specify the type of the array. For instance: @param int[] $%s. More info: http://bit.ly/typehintarray', (string) $debugContext, $debugContext->getName());
182
182
} else {
183
-
returnsprintf('%s return type is "array". Please provide a @return annotation to further specify the type of the array. For instance: @return int[]', (string) $debugContext);
183
+
returnsprintf('%s return type is "array". Please provide a @return annotation to further specify the type of the array. For instance: @return int[]. More info: http://bit.ly/typehintarray', (string) $debugContext);
184
184
}
185
185
} else {
186
186
if ($docblockWithoutNullableinstanceof UnionType) {
@@ -199,9 +199,9 @@ private function analyzeWithTypehint(DebugContextInterface $debugContext, Type $
if ($debugContextinstanceof ParameterDebugContext) {
202
-
returnsprintf('%s type is "array". Please provide a more specific @param annotation in the docblock. For instance: @param int[] $%s. Use @param mixed[] $%s if this is really an array of mixed values.', (string) $debugContext, $debugContext->getName(), $debugContext->getName());
202
+
returnsprintf('%s type is "array". Please provide a more specific @param annotation in the docblock. For instance: @param int[] $%s. Use @param mixed[] $%s if this is really an array of mixed values. More info: http://bit.ly/typehintarray', (string) $debugContext, $debugContext->getName(), $debugContext->getName());
203
203
} else {
204
-
returnsprintf('%s return type is "array". Please provide a more specific @return annotation. For instance: @return int[]. Use @return mixed[] if this is really an array of mixed values.', (string) $debugContext);
204
+
returnsprintf('%s return type is "array". Please provide a more specific @return annotation. For instance: @return int[]. Use @return mixed[] if this is really an array of mixed values. More info: http://bit.ly/typehintarray', (string) $debugContext);
205
205
}
206
206
}
207
207
}
@@ -242,19 +242,19 @@ private function analyzeWithoutTypehint(DebugContextInterface $debugContext, Typ
242
242
{
243
243
if ($docBlockTypeHintsinstanceof MixedType && $docBlockTypeHints->isExplicitMixed() === false) {
244
244
if ($debugContextinstanceof ParameterDebugContext) {
245
-
returnsprintf('%s has no type-hint and no @param annotation.', (string) $debugContext);
245
+
returnsprintf('%s has no type-hint and no @param annotation. More info: http://bit.ly/usetypehint', (string) $debugContext);
246
246
} else {
247
-
returnsprintf('%s there is no return type and no @return annotation.', (string) $debugContext);
247
+
returnsprintf('%s there is no return type and no @return annotation. More info: http://bit.ly/usetypehint', (string) $debugContext);
'In function "test", parameter $no_type_hint has no type-hint and no @param annotation.',
22
+
'In function "test", parameter $no_type_hint has no type-hint and no @param annotation. More info: http://bit.ly/usetypehint',
23
23
3,
24
24
],
25
25
[
26
-
'In function "test", there is no return type and no @return annotation.',
26
+
'In function "test", there is no return type and no @return annotation. More info: http://bit.ly/usetypehint',
27
27
3,
28
28
],
29
29
[
30
-
'In function "test2", parameter $type_hintable can be type-hinted to "?string".',
30
+
'In function "test2", parameter $type_hintable can be type-hinted to "?string". More info: http://bit.ly/usetypehint',
31
31
11,
32
32
],
33
33
[
34
-
'In function "test2", a "string" return type can be added.',
34
+
'In function "test2", a "string" return type can be added. More info: http://bit.ly/usetypehint',
35
35
11,
36
36
],
37
37
[
38
-
'In function "test3", parameter $type_hintable can be type-hinted to "\DateTimeInterface".',
38
+
'In function "test3", parameter $type_hintable can be type-hinted to "\DateTimeInterface". More info: http://bit.ly/usetypehint',
39
39
19,
40
40
],
41
41
[
42
-
'In function "test3", a "\DateTimeInterface" return type can be added.',
42
+
'In function "test3", a "\DateTimeInterface" return type can be added. More info: http://bit.ly/usetypehint',
43
43
19,
44
44
],
45
45
[
46
-
'In function "test4", parameter $type_hintable can be type-hinted to "array".',
46
+
'In function "test4", parameter $type_hintable can be type-hinted to "array". More info: http://bit.ly/usetypehint',
47
47
27,
48
48
],
49
49
[
50
-
'In function "test4", a "array" return type can be added.',
50
+
'In function "test4", a "array" return type can be added. More info: http://bit.ly/usetypehint',
51
51
27,
52
52
],
53
53
[
54
-
'In function "test6", parameter $better_type_hint type is "array". Please provide a @param annotation to further specify the type of the array. For instance: @param int[] $better_type_hint',
54
+
'In function "test6", parameter $better_type_hint type is "array". Please provide a @param annotation to further specify the type of the array. For instance: @param int[] $better_type_hint. More info: http://bit.ly/typehintarray',
55
55
38,
56
56
],
57
57
[
58
-
'In function "test6", return type is "array". Please provide a @return annotation to further specify the type of the array. For instance: @return int[]',
58
+
'In function "test6", return type is "array". Please provide a @return annotation to further specify the type of the array. For instance: @return int[]. More info: http://bit.ly/typehintarray',
59
59
38,
60
60
],
61
61
[
@@ -67,23 +67,23 @@ public function testCheckCatchedException()
67
67
46,
68
68
],
69
69
[
70
-
'In function "test8", parameter $any_array type is "array". Please provide a more specific @param annotation in the docblock. For instance: @param int[] $any_array. Use @param mixed[] $any_array if this is really an array of mixed values.',
70
+
'In function "test8", parameter $any_array type is "array". Please provide a more specific @param annotation in the docblock. For instance: @param int[] $any_array. Use @param mixed[] $any_array if this is really an array of mixed values. More info: http://bit.ly/typehintarray',
71
71
62,
72
72
],
73
73
[
74
-
'In function "test8", return type is "array". Please provide a more specific @return annotation. For instance: @return int[]. Use @return mixed[] if this is really an array of mixed values.',
74
+
'In function "test8", return type is "array". Please provide a more specific @return annotation. For instance: @return int[]. Use @return mixed[] if this is really an array of mixed values. More info: http://bit.ly/typehintarray',
75
75
62,
76
76
],
77
77
[
78
-
'In function "test10", parameter $id has no type-hint and no @param annotation.',
78
+
'In function "test10", parameter $id has no type-hint and no @param annotation. More info: http://bit.ly/usetypehint',
79
79
76,
80
80
],
81
81
[
82
82
'In function "test13", parameter $type_hintable type is type-hinted to "ClassDoesNotExist" but the @param annotation says it is a "array<DateTimeImmutable>". Please fix the @param annotation.',
83
83
97,
84
84
],
85
85
[
86
-
'In function "test15", parameter $foo type is "array". Please provide a @param annotation to further specify the type of the array. For instance: @param int[] $foo',
86
+
'In function "test15", parameter $foo type is "array". Please provide a @param annotation to further specify the type of the array. For instance: @param int[] $foo. More info: http://bit.ly/typehintarray',
'In method "TheCodingMachine\PHPStan\Rules\TypeHints\data\Foo::test", parameter $no_type_hint has no type-hint and no @param annotation.',
22
+
'In method "TheCodingMachine\PHPStan\Rules\TypeHints\data\Foo::test", parameter $no_type_hint has no type-hint and no @param annotation. More info: http://bit.ly/usetypehint',
23
23
9,
24
24
],
25
25
[
26
-
'In method "TheCodingMachine\PHPStan\Rules\TypeHints\data\BazClass::notInherited", parameter $no_type_hint has no type-hint and no @param annotation.',
26
+
'In method "TheCodingMachine\PHPStan\Rules\TypeHints\data\BazClass::notInherited", parameter $no_type_hint has no type-hint and no @param annotation. More info: http://bit.ly/usetypehint',
0 commit comments