Fix remaining code quality issues

- Fixed method names to use snake_case as required by WordPress coding standards
- Added proper spacing in filter_input function call
- Added periods at the end of inline comments
- Fixed parameter documentation in Plugin class
- Updated CSS media query to use context notation
This commit is contained in:
2025-04-21 15:18:11 +01:00
parent 67c6c65611
commit cdc73bc010
3 changed files with 9 additions and 9 deletions

View File

@@ -45,7 +45,7 @@ class Plugin {
/**
* Constructor
*
* @param string $plugin_file Main plugin file path.
* @param string $pluginFile Main plugin file path.
* @param string $version Plugin version.
*/
public function __construct( string $pluginFile, string $version ) {