Initial commit
diff --git a/includes/deprecated/class-wc-stripe-apple-pay.php b/includes/deprecated/class-wc-stripe-apple-pay.php
new file mode 100644
index 0000000..2179169
--- /dev/null
+++ b/includes/deprecated/class-wc-stripe-apple-pay.php
@@ -0,0 +1,37 @@
+<?php
+if ( ! defined( 'ABSPATH' ) ) {
+ exit;
+}
+
+/**
+ * DEPRECATED DO NOT USE!!
+ */
+if ( ! class_exists( 'WC_Stripe_Apple_Pay' ) ) {
+ class WC_Stripe_Apple_Pay {
+ /**
+ * This Instance.
+ *
+ * @var
+ */
+ private static $_this;
+
+ public function __construct() {
+ self::$_this = $this;
+ }
+
+ public static function instance() {
+ WC_Stripe_Logger::log( 'DEPRECATED! WC_Stripe_Apple_Pay class has been hard deprecated. Please remove any code that references this class or instance. This class will be removed by version 4.2' );
+ return self::$_this;
+ }
+
+ public function __get( $var ) {
+ return null;
+ }
+
+ public function __call( $name, $arguments ) {
+ return null;
+ }
+ }
+}
+
+new WC_Stripe_Apple_Pay();