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

15 行
247B

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

Powered by TurnKey Linux.