您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
236B

  1. <?php
  2. namespace Framework\Database\Migration\Field;
  3. class IntField extends Field
  4. {
  5. public ?int $default = null;
  6. public function default(int $value): static
  7. {
  8. $this->default = $value;
  9. return $this;
  10. }
  11. }

Powered by TurnKey Linux.