From 854b058ebae4da0dac498e4ed23d92079f33e803 Mon Sep 17 00:00:00 2001 From: ismail <74091824+ismaileke@users.noreply.github.com> Date: Sat, 23 Sep 2023 16:20:29 +0300 Subject: [PATCH] '?' sign is missing. you should remove the default values or you can add '?' symbol --- src/types/login/AuthenticationData.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/login/AuthenticationData.php b/src/types/login/AuthenticationData.php index 9971fd17..e4b2c4db 100644 --- a/src/types/login/AuthenticationData.php +++ b/src/types/login/AuthenticationData.php @@ -25,9 +25,9 @@ final class AuthenticationData{ /** @required */ public string $identity; - public string $sandboxId = "RETAIL"; //TODO: what are the other possible values? + public ?string $sandboxId = "RETAIL"; //TODO: what are the other possible values? - public string $titleId = ""; //TODO: find out what this is for + public ?string $titleId = ""; //TODO: find out what this is for /** @required */ public string $XUID;