1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 01:09:38 +01:00

missing return

This commit is contained in:
orklah 2021-09-25 16:50:14 +02:00
parent ebef0de9b4
commit 06f497fca9

View File

@ -17,5 +17,7 @@ class NodeCounterVisitor extends PhpParser\NodeVisitorAbstract
public function enterNode(PhpParser\Node $node)
{
$this->count++;
return null;
}
}