mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-07-29 02:07:27 +08:00
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
15 lines
458 B
PHP
15 lines
458 B
PHP
<?php
|
|
/**
|
|
* Minimal stub for the WooCommerce Blueprint StepExporter 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\Exporters;
|
|
|
|
if ( ! interface_exists( StepExporter::class ) ) {
|
|
interface StepExporter {
|
|
}
|
|
}
|