選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
171B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Models;
  4. class User
  5. {
  6. public int|string|null $id = null;
  7. public string $name = '';
  8. public string $email = '';
  9. }

Powered by TurnKey Linux.