| Total Complexity | 5 |
| Total Lines | 53 |
| Duplicated Lines | 0 % |
| Coverage | 29.4% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | class WP_Site_Monitor { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * The loader that's responsible for registering all hooks and filters. |
||
| 28 | * |
||
| 29 | * @var Hook_Loader $loader Maintains and registers all hooks for the plugin. |
||
| 30 | * @since 1.0.0 |
||
| 31 | */ |
||
| 32 | protected $loader; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Define the core functionality of the plugin. |
||
| 36 | * |
||
| 37 | * @since 1.0.0 |
||
| 38 | */ |
||
| 39 | public function __construct() { |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Initialise plugin files. |
||
| 47 | * |
||
| 48 | * @since 1.0.0 |
||
| 49 | */ |
||
| 50 | public function init() { |
||
| 59 | } |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Fired during plugin deactivation, |
||
| 63 | * |
||
| 64 | * @since 1.0.0 |
||
| 65 | */ |
||
| 66 | 1 | public static function deactivate() { |
|
| 68 | 1 | } |
|
| 69 | |||
| 70 | /** |
||
| 71 | * Fired during plugin deletion. |
||
| 72 | * |
||
| 73 | * @since 1.0.0 |
||
| 74 | */ |
||
| 75 | 1 | public static function uninstall() { |
|
| 79 |