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

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