[ticket/11309] phpbb_extension_interface::disable_step correct docblock.

The `@return` documentation of the `phpbb_extension_interface::disable_step`
method states incorrect that the method returns null, as it returns
false or a state.

PHPBB3-11309
This commit is contained in:
Erik Frèrejean 2013-01-03 13:16:38 +01:00
parent 228580b674
commit 68baee4ce2

View file

@ -45,7 +45,9 @@ interface phpbb_extension_interface
* *
* @param mixed $old_state The return value of the previous call * @param mixed $old_state The return value of the previous call
* of this method, or false on the first call * of this method, or false on the first call
* @return null * @return mixed Returns false after last step, otherwise
* temporary state which is passed as an
* argument to the next step
*/ */
public function disable_step($old_state); public function disable_step($old_state);