From bda2f2701d29c5523ce4d391f744f8fad74b7944 Mon Sep 17 00:00:00 2001 From: Matthew Brown Date: Tue, 14 May 2019 14:30:53 -0400 Subject: [PATCH] Fix bad call --- hooks/TestCaseHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/TestCaseHandler.php b/hooks/TestCaseHandler.php index c5b73f1..15652fa 100644 --- a/hooks/TestCaseHandler.php +++ b/hooks/TestCaseHandler.php @@ -192,7 +192,7 @@ class TestCaseHandler implements assert(null !== $provider_return_type_location); $expected_provider_return_type = new Type\Atomic\TIterable([ - Type::combineUnionTypes(Type::getArrayKey()), + Type::getArrayKey(), Type::getArray(), ]);