From 42fb38403d10cd68ddb2dea60ccc0951cd44db2c Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Wed, 19 Apr 2023 12:37:06 +0200 Subject: [PATCH] Update --- tests/TypeComparatorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TypeComparatorTest.php b/tests/TypeComparatorTest.php index 96bb6f053..6a2d093f5 100644 --- a/tests/TypeComparatorTest.php +++ b/tests/TypeComparatorTest.php @@ -160,8 +160,8 @@ class TypeComparatorTest extends TestCase 'callable-string', ], 'callableUnionAcceptsCallableUnion' => [ - 'callable(int,string[]): void|callable(int): void', - 'callable(int): void|callable(int,string[]): void', + '(callable(int,string[]): void)|(callable(int): void)', + '(callable(int): void)|(callable(int,string[]): void)', ], ]; }