1
0
mirror of https://github.com/flarum/core.git synced 2025-10-18 18:26:07 +02:00

Extract Flarum\Group namespace

This commit is contained in:
Franz Liedke
2017-06-24 14:05:00 +02:00
parent 11bf3e34b7
commit c22219ec20
24 changed files with 69 additions and 71 deletions

View File

@@ -23,7 +23,7 @@ class GroupsChanged
public $user;
/**
* @var \Flarum\Core\Group[]
* @var \Flarum\Group\Group[]
*/
public $oldGroups;
@@ -34,7 +34,7 @@ class GroupsChanged
/**
* @param User $user The user whose groups were changed.
* @param \Flarum\Core\Group[] $oldGroups
* @param \Flarum\Group\Group[] $oldGroups
* @param User $actor
*/
public function __construct(User $user, array $oldGroups, User $actor = null)