Skip to content

Commit

Permalink
move change to WordPressBasicAuth.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidsector9 committed Aug 19, 2024
1 parent db505f2 commit ff29760
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 56 deletions.
56 changes: 0 additions & 56 deletions includes/classes/Authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,62 +24,6 @@ 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
56 changes: 56 additions & 0 deletions includes/classes/Authentications/WordPressBasicAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,62 @@ class WordPressBasicAuth extends Authentication {
*/
public static $label = 'Username/Password';

/**
* 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;

/**
* Setup class
*
Expand Down

0 comments on commit ff29760

Please sign in to comment.