1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

Merge pull request #3776 from VSEphpbb/ticket/14033

[ticket/14033] Fix errors in docblocks
This commit is contained in:
Tristan Darricau 2015-07-17 09:50:15 +02:00
commit 04a8c3c0a4
4 changed files with 5 additions and 4 deletions

View File

@ -35,7 +35,7 @@ class reparse extends \phpbb\console\command\command
* Constructor
*
* @param \phpbb\user $user
* @param \phpbb\di\service_collection $reparser_collection
* @param \phpbb\di\service_collection $reparsers
*/
public function __construct(\phpbb\user $user, \phpbb\di\service_collection $reparsers)
{

View File

@ -64,7 +64,7 @@ interface filesystem_interface
* or the user can specify octal values (or any integer if it makes sense). All directories will have
* an execution bit appended, if the user group (owner, group or other) has any bit specified.
*
* @param string|array|\Traversable $file The file/directory to be chmodded
* @param string|array|\Traversable $files The file/directory to be chmodded
* @param int $perms Permissions to set
* @param bool $recursive If the permissions should be changed recursively
* @param bool $force_chmod_link Try to apply permissions to symlinks as well

View File

@ -49,6 +49,7 @@ class manager
*
* @param string $block_name Name or language key with the name of the block
* @param bool $switch_column Switch the column of the menu
* @param array $questions Array of frequently asked questions
*/
public function add_block($block_name, $switch_column = false, $questions = array())
{

View File

@ -54,8 +54,8 @@ class user extends \phpbb\session
/**
* Constructor to set the lang path
*
* @param string $datetime_class Class name of datetime class
* @param \phpbb\language\language $lang phpBB's Language loader
* @param \phpbb\language\language $lang phpBB's Language loader
* @param string $datetime_class Class name of datetime class
*/
function __construct(\phpbb\language\language $lang, $datetime_class)
{