<?phpnamespace App\Api\BrcBackend\DTO\Signup;final class RegularSignup extends BaseSignup{ /** * @return array<string> */ public function toArray(): array { return [ 'name' => $this->name, 'city' => $this->city, 'phone' => $this->phone, 'type' => self::TYPE_WEBSITE, 'country' => $this->country, ]; }}