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

Размер файла: 565B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Models;
  6.  
  7. /**
  8. * Class Counter
  9. *
  10. * @property int id
  11. * @property string period
  12. * @property int allhosts
  13. * @property int allhits
  14. * @property int dayhosts
  15. * @property int dayhits
  16. * @property int hosts24
  17. * @property int hits24
  18. */
  19. class Counter 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. }