Completed
Push — master ( 353fd1...eae0f6 )
by Benjamin
14:14
created

WP_Site_Monitor   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 6
c 1
b 0
f 0
dl 0
loc 33
rs 10

6 Methods

Rating   Name   Duplication   Size   Complexity  
A init() 0 1 1
A deactivate() 0 1 1
A display_settings() 0 1 1
A uninstall() 0 1 1
A activate() 0 1 1
A __construct() 0 2 1
1
<?php
2
/**
3
 * The core plugin class.
4
 *
5
 * This is used to define internationalization, admin-specific hooks, and
6
 * public-facing site hooks.
7
 *
8
 * Also maintains the unique identifier of this plugin as well as the current
9
 * version of the plugin.
10
 *
11
 * @package WPSiteMonitor
12
 * @link https://github.com/BWibrew/WP-Site-Monitor/
13
 * @author Benjamin Wibrew <[email protected]>
14
 * @since 1.0.0
15
 */
16
17
namespace WPSiteMonitor;
18
19
/**
20
 * Class WP_Site_Monitor
21
 *
22
 * @package WPSiteMonitor
23
 */
24
class WP_Site_Monitor {
25
	/**
26
	 * Define the core functionality of the plugin.
27
	 */
28
	public function __construct() {
29
		$this->init();
30
	}
31
32
	/**
33
	 * Initialise plugin files.
34
	 */
35
	public static function init() {
36
	}
37
38
	/**
39
	 * Fired during plugin activation
40
	 */
41
	public static function activate() {
42
	}
43
44
	/**
45
	 * Fired during plugin deactivation
46
	 */
47
	public static function deactivate() {
48
	}
49
50
	/**
51
	 * Fired during plugin deletion
52
	 */
53
	public static function uninstall() {
54
	}
55
56
	public function display_settings() {
57
58
	}
59
}
60