function_name
intcount
diff --git a/tests/php/type_rendering_002.phpt b/tests/php/type_rendering_002.phpt
index 424141d3..5ef17104 100644
--- a/tests/php/type_rendering_002.phpt
+++ b/tests/php/type_rendering_002.phpt
@@ -80,9 +80,21 @@ Content:
-
8. Function/method with more than three parameters
+
8. Function/method with intersection type parameter
+
function_name(Countable&Traversable $option
)
+
+
+
+
+
9. Function/method with DNF (Disjunctive Normal Form) type parameter
+
function_name((Countable&Traversable)|DOMAttr $option
)
+
+
+
+
+
10. Function/method with more than three parameters
-
+
\ No newline at end of file
diff --git a/tests/php/type_rendering_003.phpt b/tests/php/type_rendering_003.phpt
index 4e0b1fc4..a219094d 100644
--- a/tests/php/type_rendering_003.phpt
+++ b/tests/php/type_rendering_003.phpt
@@ -86,9 +86,21 @@ Content:
-
9. Constructor with more than three parameters
+
9. Constructor with intersection type parameter
+
final public ClassName::__construct(Countable&Traversable $option
)
+
+
+
+
+
10. Constructor with DNF (Disjunctive Normal Form) type parameter
+
final public ClassName::__construct((Countable&Traversable)|DOMAttr $option
)
+
+
+
+
+
11. Constructor with more than three parameters
final private ClassName::__construct(
int $count
,
string $name
,
bool $isSomething
,
array $list
)
-
+
\ No newline at end of file