mirror of
https://github.com/flarum/core.git
synced 2025-10-10 06:24:26 +02:00
Move Group to its own namespace
We’ll need to add commands etc. for group management in the future
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<?php namespace Flarum\Core\Users;
|
||||
|
||||
use Flarum\Core\Groups\Group;
|
||||
use Flarum\Core\Model;
|
||||
use Flarum\Core\Notifications\Notification;
|
||||
use Illuminate\Contracts\Hashing\Hasher;
|
||||
@@ -487,7 +488,7 @@ class User extends Model
|
||||
*/
|
||||
public function groups()
|
||||
{
|
||||
return $this->belongsToMany('Flarum\Core\Users\Group', 'users_groups');
|
||||
return $this->belongsToMany('Flarum\Core\Groups\Group', 'users_groups');
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user