Completed
Push — master ( a53ae1...14efcb )
by Roy
02:09
created

WC_Stripe_Apple_Pay::__call()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
if ( ! defined( 'ABSPATH' ) ) {
3
	exit;
4
}
5
6
/**
7
 * DEPRECATED DO NOT USE!!
8
 */
9
if ( ! class_exists( 'WC_Stripe_Apple_Pay' ) ) {
10
	class WC_Stripe_Apple_Pay {
11
		/**
12
		 * This Instance.
13
		 *
14
		 * @var
15
		 */
16
		private static $_this;
17
18
		public function __construct() {
19
			self::$_this = $this;
20
		}
21
22
		public static function instance() {
23
			WC_Stripe_Logger::log( "DEPRECATED! WC_Stripe_Apple_Pay class has been hard deprecated. Please remove any code that references this class or instance." );
24
			return self::$_this;
25
		}
26
27
		public function __get( $var ) {
28
			return null;
29
		}
30
31
		public function __call( $name, $arguments ) {
32
			return null;
33
		}
34
	}
35
}
36
37
new WC_Stripe_Apple_Pay();
38