Skip to content

Commit

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

protected $api;
protected $logger;
protected $order_management;
public $api;
public $logger;
public $order_management;

/**
* Class constructor.
Expand Down
10 changes: 5 additions & 5 deletions src/classes/class-bom-admin-notices.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ 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;
public $enabled;
public $auto_capture;
public $auto_cancel;
public $old_billmate_auto_capture;
public $old_billmate_auto_cancel;

/**
* Returns the *Singleton* instance of this class.
Expand Down

0 comments on commit ae76c7e

Please sign in to comment.