[ticket/12557] Fix doc block errors found by Sami

More corrections.

PHPBB3-12557
This commit is contained in:
n-aleha 2014-05-20 18:58:42 +03:00
parent c355b60c62
commit 6ac8d17af6
5 changed files with 11 additions and 11 deletions

View file

@ -1301,7 +1301,6 @@ class acp_attachments
/** /**
* Check accuracy of attachment statistics. * Check accuracy of attachment statistics.
* *
* @param $resync bool Resync stats if they're incorrect.
* @return bool|string Returns false if stats are correct or error message * @return bool|string Returns false if stats are correct or error message
* otherwise. * otherwise.
*/ */

View file

@ -28,13 +28,13 @@ class apache extends \phpbb\auth\provider\base
/** /**
* Apache Authentication Constructor * Apache Authentication Constructor
* *
* @param \phpbb\db\driver\driver_interface $db Database object * @param \phpbb\db\driver\driver_interface $db Database object
* @param \phpbb\config\config $config Config object * @param \phpbb\config\config $config Config object
* @param \phpbb\passwords\manager $passwords_manager Passwords Manager object * @param \phpbb\passwords\manager $passwords_manager Passwords Manager object
* @param \phpbb\request\request $request Request object * @param \phpbb\request\request $request Request object
* @param \phpbb\user $user User object * @param \phpbb\user $user User object
* @param string $phpbb_root_path Relative path to phpBB root * @param string $phpbb_root_path Relative path to phpBB root
* @param string $php_ext PHP extension (php) * @param string $php_ext PHP extension (php)
*/ */
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\passwords\manager $passwords_manager, \phpbb\request\request $request, \phpbb\user $user, $phpbb_root_path, $php_ext) public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\passwords\manager $passwords_manager, \phpbb\request\request $request, \phpbb\user $user, $phpbb_root_path, $php_ext)
{ {

View file

@ -29,10 +29,10 @@ class ldap extends \phpbb\auth\provider\base
/** /**
* LDAP Authentication Constructor * LDAP Authentication Constructor
* *
* @param \phpbb\db\driver\driver_interface $db Database object * @param \phpbb\db\driver\driver_interface $db Database object
* @param \phpbb\config\config $config Config object * @param \phpbb\config\config $config Config object
* @param \phpbb\passwords\manager $passwords_manager Passwords manager object * @param \phpbb\passwords\manager $passwords_manager Passwords manager object
* @param \phpbb\user $user User object * @param \phpbb\user $user User object
*/ */
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\passwords\manager $passwords_manager, \phpbb\user $user) public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\passwords\manager $passwords_manager, \phpbb\user $user)
{ {

View file

@ -82,7 +82,7 @@ class helper
/** /**
* Automate setting up the page and creating the response object. * Automate setting up the page and creating the response object.
* *
* @param string $handle The template handle to render * @param string $template_file The template handle to render
* @param string $page_title The title of the page to output * @param string $page_title The title of the page to output
* @param int $status_code The status code to be sent to the page header * @param int $status_code The status code to be sent to the page header
* @param bool $display_online_list Do we display online users list * @param bool $display_online_list Do we display online users list

View file

@ -87,6 +87,7 @@ class post extends \phpbb\notification\type\base
* Find the users who want to receive notifications * Find the users who want to receive notifications
* *
* @param array $post Data from * @param array $post Data from
* @param array $options Options for finding users for notification
* *
* @return array * @return array
*/ */