Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/paypal/module-braintree-core/Plugin/
Upload File :
Current File : //home/rtorresani/www/vendor/paypal/module-braintree-core/Plugin/ExcludeFromMinification.php

<?php
declare(strict_types=1);

namespace PayPal\Braintree\Plugin;

use \Magento\Framework\View\Asset\Minification;

class ExcludeFromMinification
{
    /**
     * @param Minification $subject
     * @param array $result
     * @param $contentType
     * @return array
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function afterGetExcludes(Minification $subject, array $result, $contentType): array
    {
        $result[] = '/pay.google.com/';
        return $result;
    }
}