refactor: namespace everything

This commit is contained in:
Ben Goldsworthy 2021-05-01 21:34:46 +01:00
parent 6683c0b169
commit ce41cd8353
21 changed files with 939 additions and 839 deletions

View file

@ -1,34 +0,0 @@
<?php
/**
* File providing `Footnotes_Deactivator` class.
*
* @package footnotes
* @subpackage includes
*
* @since 2.8.0
*/
/**
* Class providing action(s) on plugin deactivation.
*
* This class defines all code necessary to run during the plugin's deactivation.
*
* @package footnotes
* @subpackage includes
*
* @since 2.8.0
*/
class Footnotes_Deactivator {
/**
* Runs when the plugin is deactivated.
*
* Currently NOP.
*
* @since 2.8.0
*/
public static function deactivate() {
// Nothing yet.
}
}