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

15 行
242B

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

Powered by TurnKey Linux.