Fix: Rename class files and apply coding standard fixes

This commit is contained in:
2025-04-18 18:08:51 +01:00
parent 3fa42ae1c7
commit 058ae4b64e
8 changed files with 2233 additions and 9 deletions

31
includes/class-core.php Normal file
View File

@@ -0,0 +1,31 @@
<?php
/**
* Core functionality for the plugin
*
* @package WPALLSTARS\PluginStarterTemplate
*/
namespace WPALLSTARS\PluginStarterTemplate;
/**
* Core class
*/
class Core {
/**
* Constructor
*/
public function __construct() {
// Initialize hooks.
}
/**
* Example method to filter content
*
* @param string $content The content to filter.
* @return string The filtered content.
*/
public function filter_content( $content ) {
return $content;
}
}