Open sunxyw opened 1 year ago
The code echo $this->_accessTokenExpiredAt; present in the requestToken() method of the BaseClient class is likely a debugging statement that the developer forgot to remove.
echo $this->_accessTokenExpiredAt;
requestToken()
BaseClient
Minimal code-snippet showcasing the problem
https://github.com/Authing/authing-php-sdk/blob/6bb5c18f2dba8736f500e4521feaf3ac806cfd45/src/BaseClient.php#L121-L131
The debugging code should be removed.
The debugging code is present and will output unwanted information.
Description
The code
echo $this->_accessTokenExpiredAt;
present in therequestToken()
method of theBaseClient
class is likely a debugging statement that the developer forgot to remove.Minimal code-snippet showcasing the problem
https://github.com/Authing/authing-php-sdk/blob/6bb5c18f2dba8736f500e4521feaf3ac806cfd45/src/BaseClient.php#L121-L131
Expected behavior
The debugging code should be removed.
Actual behavior
The debugging code is present and will output unwanted information.