Passed
Push — master ( 29aa47...a9ceae )
by Chris
09:18
created

MonsterInsights_License_Compat::get_license_key()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
/**
3
 * This class is used to prevent fatal errors in legacy code
4
 * that others have written based on testing we've done.
5
 *
6
 * @package MonsterInsights
7
 */
8
9
/**
10
 * Class MonsterInsights_License_Compat
11
 */
12
class MonsterInsights_License_Compat {
13
14
	/**
15
	 * MonsterInsights_License_Shim constructor.
16
	 */
17
	public function __construct() {}
18
19
	/**
20
	 * @return string
21
	 */
22
	public function get_site_license_type() {
23
		return '';
24
	}
25
26
	/**
27
	 * @return string
28
	 */
29
	public function get_site_license_key() {
30
		return '';
31
	}
32
33
	/**
34
	 * @return string
35
	 */
36
	public function get_network_license_type() {
37
		return '';
38
	}
39
40
	/**
41
	 * @return string
42
	 */
43
	public function get_network_license_key() {
44
		return '';
45
	}
46
47
	/**
48
	 * @return string
49
	 */
50
	public function get_license_key() {
51
		return '';
52
	}
53
54
}
55