From bab9e5ad7f64052ed10322398302e47df6b6a533 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Mon, 11 Mar 2019 12:47:04 +0000 Subject: [PATCH] Fix parameter type and description Patch provided by Jochem Klaver. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@346993 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/reflection/reflectionclass/issubclassof.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reference/reflection/reflectionclass/issubclassof.xml b/reference/reflection/reflectionclass/issubclassof.xml index 642dc08a47..95e54d1961 100644 --- a/reference/reflection/reflectionclass/issubclassof.xml +++ b/reference/reflection/reflectionclass/issubclassof.xml @@ -11,7 +11,7 @@ &reftitle.description; public boolReflectionClass::isSubclassOf - stringclass + mixedclass Checks if the class is a subclass of a specified class or implements @@ -27,7 +27,8 @@ class - The class name being checked against. + Either the name of the class as string or + a ReflectionClass object of the class to check against.