Skip to content

Commit

Permalink
Merge pull request #7496 from google/bug/7202-deprecated-dynamic-prop…
Browse files Browse the repository at this point in the history
…erty-cleanup

Fix dynamic property declarations.
  • Loading branch information
tofumatt authored Aug 29, 2023
2 parents a99c7da + 9e023c8 commit c67b81b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@
*/
class Google_Proxy_Code_Exception extends Exception {

/**
* Temporary code for an undelegated proxy token.
*
* @since n.e.x.t Explicitly declared; previously, it was dynamically declared.
*
* @var string
*/
protected $access_code;

/**
* Constructor.
*
Expand Down
9 changes: 9 additions & 0 deletions includes/Core/Authentication/Setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ class Setup {
*/
protected $google_proxy;

/**
* Proxy support URL.
*
* @since n.e.x.t Explicitly declared; previously, it was dynamically declared.
*
* @var string
*/
protected $proxy_support_link_url;

/**
* Credentials instance.
*
Expand Down
4 changes: 3 additions & 1 deletion includes/Core/Modules/Tags/Module_Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ abstract class Module_Tag extends Tag {
* Module slug.
*
* @since 1.24.0
* @since n.e.x.t Renamed from slug to module_slug.
*
* @var string
*/
protected $slug;
protected $module_slug;

/**
* Constructor.
Expand Down

0 comments on commit c67b81b

Please sign in to comment.