Fix code quality issues and improve GitHub Actions workflow

This commit is contained in:
2025-04-21 21:57:22 +01:00
parent 1841b6b8bd
commit 11fbce90a0
4 changed files with 112 additions and 22 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;
}
}