Fix remaining code quality issues: convert PHP methods to camelCase, update GitHub Actions workflow

This commit is contained in:
2025-04-22 15:22:36 +01:00
parent f48276cc58
commit ce6c6e42a9
3 changed files with 7 additions and 7 deletions

View File

@@ -83,7 +83,7 @@ class Plugin {
*
* @return string The plugin version.
*/
public function get_version(): string {
public function getVersion(): string {
return $this->version;
}
@@ -92,7 +92,7 @@ class Plugin {
*
* @return Admin The admin instance.
*/
public function get_admin(): Admin {
public function getAdmin(): Admin {
return $this->admin;
}
}