Skip to content

Commit

Permalink
Merge pull request #1230 from 10up/fix/dyn-property-deprecation
Browse files Browse the repository at this point in the history
Fix creation of dynamic property warning
  • Loading branch information
Sidsector9 authored Aug 21, 2024
2 parents 871564a + 7479654 commit 45045bb
Showing 1 changed file with 56 additions and 0 deletions.
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 45045bb

Please sign in to comment.