Renaming the date format to "JSON"

This commit is contained in:
Michael 2021-06-02 03:32:42 +00:00
parent 4e164690d5
commit e7bc908655
5 changed files with 5 additions and 5 deletions

View file

@ -53,6 +53,6 @@ class Token extends BaseDataTransferObject
$this->access_token = $access_token;
$this->token_type = $token_type;
$this->scope = $scope;
$this->created_at = DateTimeFormat::utc($created_at, DateTimeFormat::API);
$this->created_at = DateTimeFormat::utc($created_at, DateTimeFormat::JSON);
}
}