wikimedia/mediawiki-extensions-DonationInterface

View on GitHub
paypal_ec_gateway/paypal_express_gateway.body.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

class PaypalExpressGateway extends GatewayPage {
    protected $gatewayIdentifier = PaypalExpressAdapter::IDENTIFIER;

    /**
     * Overrides parent function to return false.
     *
     * @return bool
     *
     * @see GatewayPage::showSubmethodButtons()
     */
    public function showSubmethodButtons() {
        return false;
    }
}