woocommerce-paypal-payments/tests/stubs/StepProcessor.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
451 B
PHP

<?php
/**
* Minimal stub for the WooCommerce Blueprint StepProcessor interface.
*
* 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 implement it.
*/
namespace Automattic\WooCommerce\Blueprint;
if ( ! interface_exists( StepProcessor::class ) ) {
interface StepProcessor {
}
}