feat: scaffold plugin foundation

This commit is contained in:
Keith Solomon
2026-04-26 12:44:16 -05:00
commit 557657344d
24 changed files with 5238 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
/**
* Plugin deactivation lifecycle hook.
*
* @package WPContentSync
*/
namespace WPContentSync;
final class Deactivator {
public static function deactivate(): void {
delete_transient( 'wpcs_active_operation' );
}
}