Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 12 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | |||
31 | /** |
||
32 | * Roles can belong to many users. |
||
33 | * |
||
34 | * @return \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
35 | */ |
||
36 | public function users() |
||
37 | { |
||
38 | return $this->belongsToMany(config('acl.user', config('auth.providers.users.model'))) |
||
39 | ->withTimestamps(); |
||
40 | } |
||
41 | } |
||
42 |