mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
- Added description for ReflectionMethod class constants
- Corrected example titles, replaced 'ReflectionFunction' by 'ReflectionMethod' for a few ReflectionMethod methods git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@301620 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
314d5d831f
commit
8ce9ec16a2
5 changed files with 13 additions and 13 deletions
|
@ -109,20 +109,20 @@
|
|||
<varlistentry xml:id="reflectionmethod.props.name">
|
||||
<term><varname>name</varname></term>
|
||||
<listitem>
|
||||
<para>Prop description</para>
|
||||
<para>Method name</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="reflectionmethod.props.class">
|
||||
<term><varname>class</varname></term>
|
||||
<listitem>
|
||||
<para>Prop description</para>
|
||||
<para>Class name</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</section>
|
||||
<!-- }}} -->
|
||||
|
||||
|
||||
|
||||
<!-- {{{ ReflectionMethod constants -->
|
||||
<section xml:id="reflectionmethod.constants">
|
||||
&reftitle.constants;
|
||||
|
@ -133,42 +133,42 @@
|
|||
<varlistentry xml:id="reflectionmethod.constants.is-static">
|
||||
<term><constant>ReflectionMethod::IS_STATIC</constant></term>
|
||||
<listitem>
|
||||
<para>Description here...</para>
|
||||
<para>Indicates that the method is static.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry xml:id="reflectionmethod.constants.is-public">
|
||||
<term><constant>ReflectionMethod::IS_PUBLIC</constant></term>
|
||||
<listitem>
|
||||
<para>Description here...</para>
|
||||
<para>Indicates that the method is public.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry xml:id="reflectionmethod.constants.is-protected">
|
||||
<term><constant>ReflectionMethod::IS_PROTECTED</constant></term>
|
||||
<listitem>
|
||||
<para>Description here...</para>
|
||||
<para>Indicates that the method is protected.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry xml:id="reflectionmethod.constants.is-private">
|
||||
<term><constant>ReflectionMethod::IS_PRIVATE</constant></term>
|
||||
<listitem>
|
||||
<para>Description here...</para>
|
||||
<para>Indicates that the method is private.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry xml:id="reflectionmethod.constants.is-abstract">
|
||||
<term><constant>ReflectionMethod::IS_ABSTRACT</constant></term>
|
||||
<listitem>
|
||||
<para>Description here...</para>
|
||||
<para>Indicates that the method is abstract.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry xml:id="reflectionmethod.constants.is-final">
|
||||
<term><constant>ReflectionMethod::IS_FINAL</constant></term>
|
||||
<listitem>
|
||||
<para>Description here...</para>
|
||||
<para>Indicates that the method is final.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
&reftitle.examples;
|
||||
<para>
|
||||
<example>
|
||||
<title><methodname>ReflectionFunction::getDeclaringClass</methodname> example</title>
|
||||
<title><methodname>ReflectionMethod::getDeclaringClass</methodname> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
&reftitle.examples;
|
||||
<para>
|
||||
<example>
|
||||
<title><methodname>ReflectionFunction::invoke</methodname> example</title>
|
||||
<title><methodname>ReflectionMethod::invoke</methodname> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
&reftitle.examples;
|
||||
<para>
|
||||
<example>
|
||||
<title><methodname>ReflectionFunction::invokeArgs</methodname> example</title>
|
||||
<title><methodname>ReflectionMethod::invokeArgs</methodname> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
&reftitle.examples;
|
||||
<para>
|
||||
<example>
|
||||
<title><methodname>ReflectionFunction::__toString</methodname> example</title>
|
||||
<title><methodname>ReflectionMethod::__toString</methodname> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
|
Loading…
Reference in a new issue