Fix remaining issues: revert to snake_case for PHP methods, update WordPress Playground CLI command

This commit is contained in:
2025-04-22 16:09:52 +01:00
parent f5c8162ec7
commit c29841b8ae
3 changed files with 5 additions and 5 deletions

View File

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