Skip to content

Commit bf15df9

Browse files
authored
Merge pull request #39 from moufmouf/void_native
Non native void return types
2 parents 444e134 + caf4a89 commit bf15df9

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

src/Rules/TypeHints/AbstractMissingTypeHintRule.php

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
use PHPStan\Rules\Rule;
2626
use PHPStan\Type\UnionType;
2727
use PHPStan\Type\VerbosityLevel;
28+
use PHPStan\Type\VoidType;
2829

2930
abstract class AbstractMissingTypeHintRule implements Rule
3031
{
@@ -323,6 +324,7 @@ private function isNativeType(Type $type): bool
323324
|| $type instanceof FloatType
324325
|| $type instanceof CallableType
325326
|| $type instanceof IterableType
327+
|| $type instanceof VoidType
326328
) {
327329
return true;
328330
}

tests/Rules/TypeHints/MissingTypeHintRuleInFunctionTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ public function testCheckCatchedException()
8989
[
9090
'In function "test15", mismatching type-hints for return type. PHP type hint is "array" and docblock declared return type is a.',
9191
110,
92+
],
93+
[
94+
'In function "test19", a "void" return type can be added. More info: http://bit.ly/usetypehint',
95+
139,
9296
]
9397

9498
]);

tests/Rules/TypeHints/data/typehints.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,11 @@ function test17(string $foo): void
131131
*/
132132
function test18(): ?string
133133
{
134-
}
134+
}
135+
136+
/**
137+
* @return void
138+
*/
139+
function test19()
140+
{
141+
}

0 commit comments

Comments
 (0)