1 | <?php |
||
57 | class WC_Stripe { |
||
58 | |||
59 | /** |
||
60 | * @var Singleton The reference the *Singleton* instance of this class |
||
61 | */ |
||
62 | private static $instance; |
||
63 | |||
64 | /** |
||
65 | * Returns the *Singleton* instance of this class. |
||
66 | * |
||
67 | * @return Singleton The *Singleton* instance. |
||
68 | */ |
||
69 | public static function get_instance() { |
||
70 | if ( null === self::$instance ) { |
||
71 | self::$instance = new self(); |
||
|
|||
72 | } |
||
73 | return self::$instance; |
||
74 | } |
||
75 | |||
76 | /** |
||
77 | * Private clone method to prevent cloning of the instance of the |
||
78 | * *Singleton* instance. |
||
79 | * |
||
80 | * @return void |
||
81 | */ |
||
82 | private function __clone() {} |
||
83 | |||
84 | /** |
||
85 | * Private unserialize method to prevent unserializing of the *Singleton* |
||
86 | * instance. |
||
87 | * |
||
88 | * @return void |
||
89 | */ |
||
90 | private function __wakeup() {} |
||
91 | |||
92 | /** |
||
93 | * Protected constructor to prevent creating a new instance of the |
||
94 | * *Singleton* via the `new` operator from outside of this class. |
||
95 | */ |
||
96 | private function __construct() { |
||
97 | add_action( 'admin_init', array( $this, 'install' ) ); |
||
98 | $this->init(); |
||
99 | } |
||
100 | |||
101 | /** |
||
102 | * Init the plugin after plugins_loaded so environment variables are set. |
||
103 | * |
||
104 | * @since 1.0.0 |
||
105 | * @version 4.0.0 |
||
106 | */ |
||
107 | public function init() { |
||
108 | if ( is_admin() ) { |
||
109 | require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-privacy.php'; |
||
110 | } |
||
111 | |||
112 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php'; |
||
113 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php'; |
||
114 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php'; |
||
115 | include_once dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php'; |
||
116 | require_once dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php'; |
||
117 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php'; |
||
118 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php'; |
||
119 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php'; |
||
120 | require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php'; |
||
121 | require_once dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php'; |
||
122 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php'; |
||
123 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php'; |
||
124 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php'; |
||
125 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php'; |
||
126 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php'; |
||
127 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php'; |
||
128 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php'; |
||
129 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php'; |
||
130 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php'; |
||
131 | require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php'; |
||
132 | require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php'; |
||
133 | require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php'; |
||
134 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php'; |
||
135 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php'; |
||
136 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php'; |
||
137 | require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-intent-controller.php'; |
||
138 | |||
139 | if ( is_admin() ) { |
||
140 | require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php'; |
||
141 | } |
||
142 | |||
143 | // REMOVE IN THE FUTURE. |
||
144 | require_once dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php'; |
||
145 | |||
146 | add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) ); |
||
147 | add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) ); |
||
148 | |||
149 | // Modify emails emails. |
||
150 | add_filter( 'woocommerce_email_classes', array( $this, 'add_emails' ), 20 ); |
||
151 | |||
152 | if ( version_compare( WC_VERSION, '3.4', '<' ) ) { |
||
153 | add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) ); |
||
154 | } |
||
155 | } |
||
156 | |||
157 | /** |
||
158 | * Updates the plugin version in db |
||
159 | * |
||
160 | * @since 3.1.0 |
||
161 | * @version 4.0.0 |
||
162 | */ |
||
163 | public function update_plugin_version() { |
||
167 | |||
168 | /** |
||
169 | * Handles upgrade routines. |
||
170 | * |
||
171 | * @since 3.1.0 |
||
172 | * @version 3.1.0 |
||
173 | */ |
||
174 | public function install() { |
||
189 | |||
190 | /** |
||
191 | * Adds plugin action links. |
||
192 | * |
||
193 | * @since 1.0.0 |
||
194 | * @version 4.0.0 |
||
195 | */ |
||
196 | public function plugin_action_links( $links ) { |
||
204 | |||
205 | /** |
||
206 | * Add the gateways to WooCommerce. |
||
207 | * |
||
208 | * @since 1.0.0 |
||
209 | * @version 4.0.0 |
||
210 | */ |
||
211 | public function add_gateways( $methods ) { |
||
231 | |||
232 | /** |
||
233 | * Modifies the order of the gateways displayed in admin. |
||
234 | * |
||
235 | * @since 4.0.0 |
||
236 | * @version 4.0.0 |
||
237 | */ |
||
238 | public function filter_gateway_order_admin( $sections ) { |
||
263 | |||
264 | /** |
||
265 | * Adds the failed SCA auth email to WooCommerce. |
||
266 | * |
||
267 | * @param WC_Email[] $email_classes All existing emails. |
||
268 | * @return WC_Email[] |
||
269 | */ |
||
270 | public function add_emails( $email_classes ) { |
||
283 | } |
||
284 | |||
288 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..