update forward signature

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@329514 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Xinchen Hui 2013-02-20 05:34:55 +00:00
parent a05e74c2c3
commit cbc85dc631

View file

@ -17,22 +17,22 @@
<methodsynopsis>
<modifier>public</modifier> <type>void</type><methodname>Yaf_Controller_Abstract::forward</methodname>
<methodparam><type>string</type><parameter>controller</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>action</parameter></methodparam>
<methodparam><type>string</type><parameter>action</parameter></methodparam>
<methodparam choice="opt"><type>array</type><parameter>paramters</parameter></methodparam>
</methodsynopsis>
<methodsynopsis>
<modifier>public</modifier> <type>void</type><methodname>Yaf_Controller_Abstract::forward</methodname>
<methodparam><type>string</type><parameter>module</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>controller</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>action</parameter></methodparam>
<methodparam><type>string</type><parameter>controller</parameter></methodparam>
<methodparam><type>string</type><parameter>action</parameter></methodparam>
<methodparam choice="opt"><type>array</type><parameter>paramters</parameter></methodparam>
</methodsynopsis>
<para>
forward current execution process to other action.
<note>
<para>
it doesn't switch to other action immediately, the forwarding will
only occurr after current execution flow over.
this method doesn't switch to the destination action immediately, it
will take place after current flow finish.
</para>
</note>
</para>