Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class Password extends Model implements MakesPassword |
||
10 | { |
||
11 | use CanMakePassword; |
||
12 | |||
13 | /** |
||
14 | * The attributes that are mass assignable. |
||
15 | * |
||
16 | * @var string[] |
||
17 | */ |
||
18 | protected $fillable = [ |
||
19 | 'name', 'dynamic', 'password', |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * Create a new Eloquent instance and set the database table. |
||
24 | * |
||
25 | * @param array $attributes |
||
26 | */ |
||
27 | public function __construct(array $attributes = []) |
||
31 | } |
||
32 | } |