Skip to content

Commit

Permalink
Fixed deprecated dynamic properties
Browse files Browse the repository at this point in the history
  • Loading branch information
codedeviate committed Dec 27, 2023
1 parent e92b4ab commit 55423c0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/billmate-order-management-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ class Billmate_Order_Management_For_WooCommerce {
*/
protected static $instance;

/**
protected $api;
protected $logger;
protected $order_management;

/**
* Class constructor.
*/
public function __construct() {
Expand Down
8 changes: 7 additions & 1 deletion src/classes/class-bom-admin-notices.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ class BOM_Admin_Notices {
*/
protected static $instance;

/**
protected $enabled;
protected $auto_capture;
protected $auto_cancel;
protected $old_billmate_auto_capture;
protected $old_billmate_auto_cancel;

/**
* Returns the *Singleton* instance of this class.
*
* @return self::$instance The *Singleton* instance.
Expand Down

0 comments on commit 55423c0

Please sign in to comment.