Skip to content

Commit

Permalink
Fix inheritance bug
Browse files Browse the repository at this point in the history
  • Loading branch information
TorbenLundsgaard committed Aug 4, 2023
1 parent 7e9a1e1 commit e81bc76
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/Integration/AbstractIntegration.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@

abstract class AbstractIntegration {

/**
* Plugin instance.
*/
protected static $instance = null;

/**
* Plugin options.
*
Expand Down
5 changes: 5 additions & 0 deletions src/Integration/ContactForm7.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
*/
final class ContactForm7 extends AbstractIntegration {

/**
* Instance.
*/
protected static $instance = null;

/**
* Constructor.
*
Expand Down
5 changes: 5 additions & 0 deletions src/Integration/EasyDigitalDownloads.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
*/
final class EasyDigitalDownloads extends AbstractEcommerce {

/**
* Instance.
*/
protected static $instance = null;

/**
* Constructor.
*
Expand Down
5 changes: 5 additions & 0 deletions src/Integration/WooCommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
*/
final class WooCommerce extends AbstractEcommerce {

/**
* Instance.
*/
protected static $instance = null;

/**
* Stores Rest Extending instance.
*
Expand Down

0 comments on commit e81bc76

Please # to comment.