| Total Complexity | 1 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class RequirePin extends Model |
||
| 9 | { |
||
| 10 | use HasFactory; |
||
| 11 | |||
| 12 | protected $table = 'require_pins'; |
||
| 13 | |||
| 14 | protected $fillable = [ |
||
| 15 | 'user_id', |
||
| 16 | 'uuid', |
||
| 17 | 'ip', |
||
| 18 | 'device', |
||
| 19 | 'payload', |
||
| 20 | 'method', |
||
| 21 | 'route_arrested', |
||
| 22 | 'redirect_to', |
||
| 23 | 'pin_validation_url', |
||
| 24 | 'approved_at', |
||
| 25 | 'cancelled_at', |
||
| 26 | 'expires_at', |
||
| 27 | 'retry', |
||
| 28 | ]; |
||
| 29 | |||
| 30 | public function user() |
||
| 35 |