You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
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.