woocommerce-paypal-payments/tests/stubs/Step.php
Philipp Stracker 595119e0ce
Some checks failed
CI / coding-standards-analysis-php (push) Has been cancelled
CI / static-code-analysis-php (push) Has been cancelled
CI / tests-unit-php (7.4) (push) Has been cancelled
CI / tests-unit-php (8.0) (push) Has been cancelled
CI / tests-unit-php (8.1) (push) Has been cancelled
CI / tests-unit-php (8.2) (push) Has been cancelled
CI / tests-unit-php (8.3) (push) Has been cancelled
CI / tests-unit-php (8.4) (push) Has been cancelled
test: 🤡 Add missing stubs for test coverage
2026-06-16 16:14:01 +02:00

15 lines
429 B
PHP

<?php
/**
* Minimal stub for the WooCommerce Blueprint Step base class.
*
* The Blueprint package ships with WooCommerce core and is not autoloadable in
* the unit-test environment. This stub lets coverage (processUncoveredFiles)
* include the ppcp-compat WooCommerceBlueprint classes that extend it.
*/
namespace Automattic\WooCommerce\Blueprint\Steps;
if ( ! class_exists( Step::class ) ) {
abstract class Step {
}
}