@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | final class EDU_SveaWebPay_Loader { |
58 | 58 | public function __construct() { |
59 | - add_action( 'plugins_loaded', array( $this, 'init' ) ); |
|
59 | + add_action( 'plugins_loaded', array ( $this, 'init' ) ); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | public function init() { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | require_once( __DIR__ . '/vendor/autoload.php' ); // Load dependencies |
65 | 65 | require_once( __DIR__ . '/class/class-edu-sveawebpay.php' ); |
66 | 66 | |
67 | - add_filter( 'edu_integrations', array( $this, 'add_integration' ) ); |
|
67 | + add_filter( 'edu_integrations', array ( $this, 'add_integration' ) ); |
|
68 | 68 | } |
69 | 69 | } |
70 | 70 |