mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-07-28 01:57:35 +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
429 B
PHP
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 {
|
|
}
|
|
}
|