2015-05-27 23:43:07 -05:00
|
|
|
<?php
|
|
|
|
namespace FireflyIII\Models;
|
|
|
|
|
|
|
|
|
2016-01-01 14:49:27 -06:00
|
|
|
use Carbon\Carbon;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2015-05-27 23:43:07 -05:00
|
|
|
use Zizaco\Entrust\EntrustRole;
|
|
|
|
|
|
|
|
/**
|
2016-01-01 14:49:27 -06:00
|
|
|
* FireflyIII\Models\Role
|
2015-05-27 23:43:07 -05:00
|
|
|
*
|
2016-01-01 14:49:27 -06:00
|
|
|
* @property integer $id
|
|
|
|
* @property string $name
|
|
|
|
* @property string $display_name
|
|
|
|
* @property string $description
|
|
|
|
* @property Carbon $created_at
|
|
|
|
* @property Carbon $updated_at
|
|
|
|
* @property-read Collection|\FireflyIII\User[] $users
|
|
|
|
* @property-read Collection|Permission[] $perms
|
2015-05-27 23:43:07 -05:00
|
|
|
*/
|
|
|
|
class Role extends EntrustRole
|
|
|
|
{
|
2016-01-09 01:20:55 -06:00
|
|
|
|
2015-06-05 06:39:24 -05:00
|
|
|
}
|