wikimedia/mediawiki-extensions-DonationInterface

View on GitHub
gateway_common/UnstagingHelper.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Used to mark any class which implements an unstaging method, for transforming
 * data returned by a payment processing gateway API call.
 */
interface UnstagingHelper {
    public function unstage( GatewayType $adapter, $stagedData, &$unstagedData );
}