Skip to content

Commit

Permalink
Merge pull request #29 from woocommerce/issue-27
Browse files Browse the repository at this point in the history
Added compatibility with PHP 8.3
  • Loading branch information
jimjasson authored Feb 2, 2024
2 parents 751ae04 + b6f50a5 commit b11ad68
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion includes/class-wc-gateway-dummy.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,24 @@
* Dummy Gateway.
*
* @class WC_Gateway_Dummy
* @version 1.0.5
* @version 1.0.7
*/
class WC_Gateway_Dummy extends WC_Payment_Gateway {

/**
* Payment gateway instructions.
* @var string
*
*/
protected $instructions;

/**
* Whether the gateway is visible for non-admin users.
* @var boolean
*
*/
protected $hide_for_non_admin_users;

/**
* Constructor for the gateway.
*/
Expand Down
2 changes: 1 addition & 1 deletion woocommerce-gateway-dummy.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WooCommerce Dummy Payments Gateway
* Plugin URI: https://somewherewarm.com/
* Description: Adds the Dummy Payments gateway to your WooCommerce website.
* Version: 1.0.6
* Version: 1.0.7
*
* Author: SomewhereWarm
* Author URI: https://somewherewarm.com/
Expand Down

0 comments on commit b11ad68

Please sign in to comment.