diff options
author | n-aleha <nick_aleha@myway.com> | 2014-05-20 18:58:42 +0300 |
---|---|---|
committer | n-aleha <nick_aleha@myway.com> | 2014-08-03 07:13:20 +0300 |
commit | 6ac8d17af66900c87b4524c92e0cc26535ded7b0 (patch) | |
tree | 3c84acccf267857e566055cea4d55912c7f4ec75 /phpBB/phpbb | |
parent | c355b60c62441d15b5c2ee7044329af784c234f2 (diff) | |
download | forums-6ac8d17af66900c87b4524c92e0cc26535ded7b0.tar forums-6ac8d17af66900c87b4524c92e0cc26535ded7b0.tar.gz forums-6ac8d17af66900c87b4524c92e0cc26535ded7b0.tar.bz2 forums-6ac8d17af66900c87b4524c92e0cc26535ded7b0.tar.xz forums-6ac8d17af66900c87b4524c92e0cc26535ded7b0.zip |
[ticket/12557] Fix doc block errors found by Sami
More corrections.
PHPBB3-12557
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/auth/provider/apache.php | 12 | ||||
-rw-r--r-- | phpBB/phpbb/auth/provider/ldap.php | 6 | ||||
-rw-r--r-- | phpBB/phpbb/controller/helper.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/notification/type/post.php | 1 |
4 files changed, 11 insertions, 10 deletions
diff --git a/phpBB/phpbb/auth/provider/apache.php b/phpBB/phpbb/auth/provider/apache.php index 6bba38065d..4ce9515763 100644 --- a/phpBB/phpbb/auth/provider/apache.php +++ b/phpBB/phpbb/auth/provider/apache.php @@ -28,13 +28,13 @@ class apache extends \phpbb\auth\provider\base /** * Apache Authentication Constructor * - * @param \phpbb\db\driver\driver_interface $db Database object - * @param \phpbb\config\config $config Config object + * @param \phpbb\db\driver\driver_interface $db Database object + * @param \phpbb\config\config $config Config object * @param \phpbb\passwords\manager $passwords_manager Passwords Manager object - * @param \phpbb\request\request $request Request object - * @param \phpbb\user $user User object - * @param string $phpbb_root_path Relative path to phpBB root - * @param string $php_ext PHP extension (php) + * @param \phpbb\request\request $request Request object + * @param \phpbb\user $user User object + * @param string $phpbb_root_path Relative path to phpBB root + * @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) { diff --git a/phpBB/phpbb/auth/provider/ldap.php b/phpBB/phpbb/auth/provider/ldap.php index 56dc917593..d32e7504eb 100644 --- a/phpBB/phpbb/auth/provider/ldap.php +++ b/phpBB/phpbb/auth/provider/ldap.php @@ -29,10 +29,10 @@ class ldap extends \phpbb\auth\provider\base /** * LDAP Authentication Constructor * - * @param \phpbb\db\driver\driver_interface $db Database object - * @param \phpbb\config\config $config Config object + * @param \phpbb\db\driver\driver_interface $db Database object + * @param \phpbb\config\config $config Config 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) { diff --git a/phpBB/phpbb/controller/helper.php b/phpBB/phpbb/controller/helper.php index 30ab09105f..80e5e63083 100644 --- a/phpBB/phpbb/controller/helper.php +++ b/phpBB/phpbb/controller/helper.php @@ -82,7 +82,7 @@ class helper /** * 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 int $status_code The status code to be sent to the page header * @param bool $display_online_list Do we display online users list diff --git a/phpBB/phpbb/notification/type/post.php b/phpBB/phpbb/notification/type/post.php index ee3a253e0f..c602e0d5c3 100644 --- a/phpBB/phpbb/notification/type/post.php +++ b/phpBB/phpbb/notification/type/post.php @@ -87,6 +87,7 @@ class post extends \phpbb\notification\type\base * Find the users who want to receive notifications * * @param array $post Data from + * @param array $options Options for finding users for notification * * @return array */ |