Fix some random docblocks

This commit is contained in:
Toby Zerner 2016-04-08 13:52:50 +09:30
parent c9112624c0
commit e11401b551
3 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@ class EditUser
public $actor; public $actor;
/** /**
* The attributes to update on the post. * The attributes to update on the user.
* *
* @var array * @var array
*/ */
@ -38,7 +38,7 @@ class EditUser
/** /**
* @param int $userId The ID of the user to edit. * @param int $userId The ID of the user to edit.
* @param User $actor The user performing the action. * @param User $actor The user performing the action.
* @param array $data The attributes to update on the post. * @param array $data The attributes to update on the user.
*/ */
public function __construct($userId, User $actor, array $data) public function __construct($userId, User $actor, array $data)
{ {

View File

@ -22,7 +22,7 @@ class Guest extends User
/** /**
* Get the guest's group, containing only the 'guests' group model. * Get the guest's group, containing only the 'guests' group model.
* *
* @return \Flarum\Core\Models\Group * @return Group
*/ */
public function getGroupsAttribute() public function getGroupsAttribute()
{ {

View File

@ -32,7 +32,7 @@ class ConfigureLocales
/** /**
* Load language pack resources from the given directory. * Load language pack resources from the given directory.
* *
* @param $directory * @param string $directory
*/ */
public function loadLanguagePackFrom($directory) public function loadLanguagePackFrom($directory)
{ {