Completed
Push — master ( e0f537...a07172 )
by Benjamin
14:42
created

Activator   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A activate() 0 1 1
1
<?php
2
/**
3
 * Fired during plugin activation
4
 *
5
 * @package WPSiteMonitor
6
 * @link https://github.com/BWibrew/WP-Site-Monitor/
7
 * @author Benjamin Wibrew <[email protected]>
8
 * @since 1.0.0
9
 */
10
11
namespace WPSiteMonitor;
12
13
/**
14
 * Class Activator
15
 *
16
 * @package WPSiteMonitor
17
 */
18
class Activator {
19
	/**
20
	 * Fired during plugin activation
21
	 */
22
	public static function activate() {
23
	}
24
}
25