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

WP_Site_Monitor::deactivate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 1
rs 10
cc 1
eloc 0
nc 1
nop 0
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