Просмотр файла app/Models/ChangeMail.php

Размер файла: 620B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Models;
  6.  
  7. /**
  8. * Class ChangeMail
  9. *
  10. * @property int id
  11. * @property int user_id
  12. * @property string mail
  13. * @property string hash
  14. * @property int created_at
  15. */
  16. class ChangeMail extends BaseModel
  17. {
  18. /**
  19. * The table associated with the model.
  20. *
  21. * @var string
  22. */
  23. protected $table = 'changemail';
  24.  
  25. /**
  26. * Indicates if the model should be timestamped.
  27. *
  28. * @var bool
  29. */
  30. public $timestamps = false;
  31.  
  32. /**
  33. * The attributes that aren't mass assignable.
  34. *
  35. * @var array
  36. */
  37. protected $guarded = [];
  38. }