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

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