Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix creation of dynamic property warning #1230

Merged
merged 8 commits into from
Aug 21, 2024
56 changes: 56 additions & 0 deletions includes/classes/Authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,62 @@ abstract class Authentication {
*/
public static $error_message;

/**
* Site URL
*
* @var string
*/
public $site_url;

/**
* Username
*
* @var string
*/
public $username;

/**
* Password
*
* @var string
*/
public $password;

/**
* API Key
*
* @var string
*/
public $client_id;

/**
* API Secret
*
* @var string
*/
public $client_secret;

/**
* Redirect URI
*
* @var string
*/
public $redirect_uri;

/**
* Access Token
*
* @var string
*/
public $base64_encoded;

/**
* Created Post ID
*
* @var string
*/
public $dt_created_post_id;

/**
* Set associative arguments as instance variables
*
Expand Down
Loading