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();
diff --git a/includes/deprecated/index.html b/includes/deprecated/index.html
new file mode 100644
index 0000000..729d4d9
--- /dev/null
+++ b/includes/deprecated/index.html
@@ -0,0 +1,9 @@
+<html><head><title> - Revision 2844313: /woocommerce-gateway-stripe/trunk/includes/deprecated</title></head>
+<body>
+ <h2> - Revision 2844313: /woocommerce-gateway-stripe/trunk/includes/deprecated</h2>
+ <ul>
+ <li><a href="../">..</a></li>
+ <li><a href="class-wc-stripe-apple-pay.php">class-wc-stripe-apple-pay.php</a></li>
+ </ul>
+ <hr noshade><em>Powered by <a href="http://subversion.apache.org/">Apache Subversion</a> version 1.9.5 (r1770682).</em>
+</body></html>
\ No newline at end of file