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

ClientPreviewDTO.php 414B

12345678910111213141516171819
  1. <?php
  2. namespace App\DTO;
  3. readonly class ClientPreviewDTO extends ClientDTO
  4. {
  5. public static function fake(): self
  6. {
  7. return new self(
  8. name: 'John Doe',
  9. addressLine1: '1234 Elm St',
  10. addressLine2: 'Suite 123',
  11. city: 'Springfield',
  12. state: 'Illinois',
  13. postalCode: '62701',
  14. country: 'United States',
  15. );
  16. }
  17. }