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 * Constructor
* *
* @param \phpbb\user $user * @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) 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 * 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. * 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 int $perms Permissions to set
* @param bool $recursive If the permissions should be changed recursively * @param bool $recursive If the permissions should be changed recursively
* @param bool $force_chmod_link Try to apply permissions to symlinks as well * @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 string $block_name Name or language key with the name of the block
* @param bool $switch_column Switch the column of the menu * @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()) 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 * 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) function __construct(\phpbb\language\language $lang, $datetime_class)
{ {