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

Размер файла: 590B
  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 message
  16. * @property string ip
  17. * @property string brow
  18. * @property int created_at
  19. */
  20. class Error extends BaseModel
  21. {
  22. /**
  23. * Indicates if the model should be timestamped.
  24. *
  25. * @var bool
  26. */
  27. public $timestamps = false;
  28.  
  29. /**
  30. * The attributes that aren't mass assignable.
  31. *
  32. * @var array
  33. */
  34. protected $guarded = [];
  35. }