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

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