1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Make return type docblock-based

This commit is contained in:
Matthew Brown 2019-02-08 18:08:53 -05:00
parent c68209b8f3
commit 79d468bf66

View File

@ -13,7 +13,10 @@ class Bar
}
}
function someFunction() : void
/**
* @return void
*/
function someFunction()
{
echo "here";
}