diff --git a/.github/workflows/playground-tests.yml b/.github/workflows/playground-tests.yml index 107f7d3..4ab6ddd 100644 --- a/.github/workflows/playground-tests.yml +++ b/.github/workflows/playground-tests.yml @@ -55,7 +55,7 @@ jobs: run: npm ci - name: Install WordPress Playground CLI - run: npm install -g @wordpress/playground-tools + run: npm install -g @wp-playground/cli - name: Create plugin zip run: | @@ -65,7 +65,7 @@ jobs: - name: Run tests with WordPress Playground run: | # Start WordPress Playground with our blueprint - wp-playground start --blueprint playground/blueprint.json --port 8888 & + npx @wp-playground/cli start --blueprint playground/blueprint.json --port 8888 & # Wait for WordPress Playground to be ready echo "Waiting for WordPress Playground to be ready..." @@ -83,7 +83,7 @@ jobs: - uses: actions/checkout@v4 - name: WordPress Performance Tests - uses: wptrt/wordpress-plugin-performance-tests@v1 + uses: wptrt/wordpress-plugin-performance-tests@1.0.0 with: plugin-slug: wp-plugin-starter-template-for-ai-coding php-version: '8.0' diff --git a/includes/Multisite/class-multisite.php b/includes/Multisite/class-multisite.php index f5a5fcb..1620526 100644 --- a/includes/Multisite/class-multisite.php +++ b/includes/Multisite/class-multisite.php @@ -36,7 +36,7 @@ class Multisite { * * @return bool Always returns true. */ - public function is_multisite_compatible() { + public function isMultisiteCompatible() { return true; } @@ -45,7 +45,7 @@ class Multisite { * * @return array An empty array as this is just a placeholder. */ - public function get_network_sites() { + public function getNetworkSites() { // This is just a placeholder method. // In a real implementation, you might use get_sites() or a custom query. return function_exists( 'get_sites' ) ? get_sites( array( 'public' => 1 ) ) : array(); diff --git a/includes/class-plugin.php b/includes/class-plugin.php index 5892269..4f01883 100644 --- a/includes/class-plugin.php +++ b/includes/class-plugin.php @@ -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; } }