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
This commit is contained in:
Christoph Michael Becker 2019-03-11 12:47:04 +00:00
parent 05c4c92213
commit bab9e5ad7f

View file

@ -11,7 +11,7 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <type>bool</type><methodname>ReflectionClass::isSubclassOf</methodname>
<methodparam><type>string</type><parameter>class</parameter></methodparam>
<methodparam><type>mixed</type><parameter>class</parameter></methodparam>
</methodsynopsis>
<para>
Checks if the class is a subclass of a specified class or implements
@ -27,7 +27,8 @@
<term><parameter>class</parameter></term>
<listitem>
<para>
The class name being checked against.
Either the name of the class as <type>string</type> or
a <type>ReflectionClass</type> object of the class to check against.
</para>
</listitem>
</varlistentry>