Fix: Update test workflow for PHP 7.0 compatibility

This commit is contained in:
2025-04-18 17:42:18 +01:00
parent 3c1db9d4fb
commit 1cf46254b7
6 changed files with 42 additions and 20 deletions

View File

@@ -1 +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;
}
}