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

15 行
184B

  1. <?php
  2. namespace Framework\Database;
  3. #[Attribute]
  4. class TableName
  5. {
  6. public string $name;
  7. public function __construct(string $name)
  8. {
  9. $this->name = $name;
  10. }
  11. }

Powered by TurnKey Linux.