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

Add missing return type

This commit is contained in:
Matthew Brown 2018-06-30 14:25:32 -04:00
parent 745acaea71
commit dbde36b1d1

View File

@ -249,6 +249,9 @@ class TypeParseTest extends TestCase
Type::parseString('(A|B)&C');
}
/**
* @return void
*/
public function testBracketInUnion()
{
Type::parseString('null|(scalar|array|object)');