Skip to content

Commit 444e134

Browse files
authored
Merge pull request #38 from moufmouf/bitly
Adding bitly links for arrays and type-hinting
2 parents 36e48a5 + b4dce53 commit 444e134

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

src/Rules/TypeHints/AbstractMissingTypeHintRule.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ private function analyzeWithTypehint(DebugContextInterface $debugContext, Type $
178178
if ($phpTypeHint instanceof ArrayType) {
179179
if ($docblockWithoutNullable instanceof MixedType && !$docblockWithoutNullable->isExplicitMixed()) {
180180
if ($debugContext instanceof ParameterDebugContext) {
181-
return sprintf('%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+
return sprintf('%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());
182182
} else {
183-
return sprintf('%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+
return sprintf('%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);
184184
}
185185
} else {
186186
if ($docblockWithoutNullable instanceof UnionType) {
@@ -199,9 +199,9 @@ private function analyzeWithTypehint(DebugContextInterface $debugContext, Type $
199199

200200
if ($docblockTypehint instanceof ArrayType && $docblockTypehint->getKeyType() instanceof MixedType && $docblockTypehint->getItemType() instanceof MixedType && $docblockTypehint->getKeyType()->isExplicitMixed() && $docblockTypehint->getItemType()->isExplicitMixed()) {
201201
if ($debugContext instanceof ParameterDebugContext) {
202-
return sprintf('%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+
return sprintf('%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());
203203
} else {
204-
return sprintf('%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+
return sprintf('%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);
205205
}
206206
}
207207
}
@@ -242,19 +242,19 @@ private function analyzeWithoutTypehint(DebugContextInterface $debugContext, Typ
242242
{
243243
if ($docBlockTypeHints instanceof MixedType && $docBlockTypeHints->isExplicitMixed() === false) {
244244
if ($debugContext instanceof ParameterDebugContext) {
245-
return sprintf('%s has no type-hint and no @param annotation.', (string) $debugContext);
245+
return sprintf('%s has no type-hint and no @param annotation. More info: http://bit.ly/usetypehint', (string) $debugContext);
246246
} else {
247-
return sprintf('%s there is no return type and no @return annotation.', (string) $debugContext);
247+
return sprintf('%s there is no return type and no @return annotation. More info: http://bit.ly/usetypehint', (string) $debugContext);
248248
}
249249
}
250250

251251
$nativeTypehint = $this->isNativelyTypehintable($docBlockTypeHints);
252252

253253
if ($nativeTypehint !== null) {
254254
if ($debugContext instanceof ParameterDebugContext) {
255-
return sprintf('%s can be type-hinted to "%s".', (string) $debugContext, $nativeTypehint);
255+
return sprintf('%s can be type-hinted to "%s". More info: http://bit.ly/usetypehint', (string) $debugContext, $nativeTypehint);
256256
} else {
257-
return sprintf('%s a "%s" return type can be added.', (string) $debugContext, $nativeTypehint);
257+
return sprintf('%s a "%s" return type can be added. More info: http://bit.ly/usetypehint', (string) $debugContext, $nativeTypehint);
258258
}
259259
}
260260

tests/Rules/TypeHints/MissingTypeHintRuleInFunctionTest.php

+14-14
Original file line numberDiff line numberDiff line change
@@ -19,43 +19,43 @@ public function testCheckCatchedException()
1919

2020
$this->analyse([__DIR__ . '/data/typehints.php'], [
2121
[
22-
'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',
2323
3,
2424
],
2525
[
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',
2727
3,
2828
],
2929
[
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',
3131
11,
3232
],
3333
[
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',
3535
11,
3636
],
3737
[
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',
3939
19,
4040
],
4141
[
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',
4343
19,
4444
],
4545
[
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',
4747
27,
4848
],
4949
[
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',
5151
27,
5252
],
5353
[
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',
5555
38,
5656
],
5757
[
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',
5959
38,
6060
],
6161
[
@@ -67,23 +67,23 @@ public function testCheckCatchedException()
6767
46,
6868
],
6969
[
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',
7171
62,
7272
],
7373
[
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',
7575
62,
7676
],
7777
[
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',
7979
76,
8080
],
8181
[
8282
'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.',
8383
97,
8484
],
8585
[
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',
8787
110,
8888
],
8989
[

tests/Rules/TypeHints/MissingTypeHintRuleInMethodTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ public function testCheckCatchedException()
1919

2020
$this->analyse([__DIR__ . '/data/typehints_in_methods.php'], [
2121
[
22-
'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',
2323
9,
2424
],
2525
[
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',
2727
37,
2828
],
2929

0 commit comments

Comments
 (0)