View file app/Models/Tag.php

File size: 232B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Models;
  6.  
  7. /**
  8. * Class Tag
  9. *
  10. * @property int $id
  11. * @property string $value
  12. */
  13. class Tag extends Model
  14. {
  15. /**
  16. * Table name
  17. */
  18. protected string $table = 'tags.csv';
  19. }