This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
footnotes/src/includes/class-deactivator.php

37 lines
539 B
PHP
Raw Normal View History

<?php
/**
2021-05-01 21:34:46 +01:00
* File providing `Deactivator` class.
*
2021-05-01 21:34:46 +01:00
* @package footnotes
* @since 2.8.0
*/
2021-05-02 19:33:29 +01:00
declare(strict_types=1);
2021-05-01 21:34:46 +01:00
namespace footnotes\includes;
/**
2021-04-29 20:57:30 +01:00
* Class providing action(s) on plugin deactivation.
*
* This class defines all code necessary to run during the plugin's deactivation.
*
2021-05-01 21:34:46 +01:00
* @package footnotes
* @since 2.8.0
*/
2021-05-01 21:34:46 +01:00
class Deactivator {
/**
2021-04-29 20:57:30 +01:00
* Runs when the plugin is deactivated.
*
* Currently NOP.
*
2021-05-01 21:34:46 +01:00
* @since 2.8.0
2021-05-02 09:26:03 +01:00
*
* @return void
*/
public static function deactivate() {
// Nothing yet.
}
}