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

Размер файла: 370B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Models;
  6.  
  7. /**
  8. * Class Sticker
  9. *
  10. * @property string $login
  11. * @property string $path
  12. */
  13. class Sticker extends Model
  14. {
  15. protected string $filePath = __DIR__ . '/../../database/stickers.csv';
  16.  
  17. /**
  18. * The attributes that should be cast.
  19. */
  20. protected array $casts = [
  21. 'code' => 'string',
  22. ];
  23. }