Plugin Directory

Changeset 3250284


Ignore:
Timestamp:
03/04/2025 10:24:55 AM (13 months ago)
Author:
multisafepayplugin
Message:

Update to version 6.7.3 from GitHub

Location:
multisafepay
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • multisafepay/tags/6.7.3/multisafepay.php

    r3240589 r3250284  
    55 * Plugin URI:              https://docs.multisafepay.com/docs/woocommerce
    66 * Description:             MultiSafepay Payment Plugin
    7  * Version:                 6.7.2
     7 * Version:                 6.7.3
    88 * Author:                  MultiSafepay
    99 * Author URI:              https://www.multisafepay.com
     
    1414 * Tested up to:            6.7.2
    1515 * WC requires at least:    6.0.0
    16  * WC tested up to:         9.6.2
     16 * WC tested up to:         9.7.0
    1717 * Requires PHP:            7.3
    1818 * Text Domain:             multisafepay
     
    2727 * Plugin version
    2828 */
    29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.7.2' );
     29define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.7.3' );
    3030
    3131/**
  • multisafepay/tags/6.7.3/readme.txt

    r3240589 r3250284  
    55Tested up to: 6.7.2
    66Requires PHP: 7.3
    7 Stable tag: 6.7.2
     7Stable tag: 6.7.3
    88License: MIT
    99
     
    128128== Upgrade Notice ==
    129129
    130 = 6.7.2 =
     130= 6.7.3 =
    1311316.x.x is a major upgrade in which the MultiSafepay payment methods are registered dynamically via an API request to MultiSafepay. If you are upgrading from 5.X.X version, after the upgrade, please navigate to the MultiSafepay settings page, and to each one of the payment methods enabled in your account, and confirm the settings in each section are set up according to your preferences.
    132132
     
    144144
    145145== Changelog ==
     146= Release Notes - WooCommerce 6.7.3 (Mar 4th, 2025) =
     147
     148### Fixed
     149+ PLGWOOS-973: Round shopping cart item tax rates in BILLINK gateway
     150
    146151= Release Notes - WooCommerce 6.7.2 (Feb 14th, 2025) =
    147152
  • multisafepay/tags/6.7.3/src/Services/OrderService.php

    r3230524 r3250284  
    7171
    7272        if ( ! get_option( 'multisafepay_disable_shopping_cart', false ) || in_array( $gateway_code, GatewaysSdk::SHOPPING_CART_REQUIRED_GATEWAYS, true ) ) {
    73             $order_request->addShoppingCart( $this->shopping_cart_service->create_shopping_cart( $order, $order->get_currency() ) );
     73            $order_request->addShoppingCart( $this->shopping_cart_service->create_shopping_cart( $order, $order->get_currency(), $gateway_code ) );
    7474        }
    7575
  • multisafepay/tags/6.7.3/src/Services/ShoppingCartService.php

    r3114383 r3250284  
    3737
    3838    /**
    39      * @param WC_Order $order
    40      * @param string   $currency
     39     * @param WC_Order    $order
     40     * @param string      $currency
     41     * @param string|null $gateway_code
    4142     * @return ShoppingCart
    4243     */
    43     public function create_shopping_cart( WC_Order $order, string $currency ): ShoppingCart {
     44    public function create_shopping_cart( WC_Order $order, string $currency, ?string $gateway_code = '' ): ShoppingCart {
    4445
    4546        // If coupon type is percentage, fixed_product type, or fixed_cart, which comes by default in WooCommerce,
     
    5657        /** @var WC_Order_Item_Product $item */
    5758        foreach ( $order->get_items() as $item ) {
    58             $cart_items[] = $this->create_cart_item( $item, $currency );
     59            $cart_items[] = $this->create_cart_item( $item, $currency, $gateway_code );
    5960        }
    6061
    6162        /** @var WC_Order_Item_Shipping $item */
    6263        foreach ( $order->get_items( 'shipping' ) as $item ) {
    63             $cart_items[] = $this->create_shipping_cart_item( $item, $currency );
     64            $cart_items[] = $this->create_shipping_cart_item( $item, $currency, $gateway_code );
    6465        }
    6566
    6667        /** @var WC_Order_Item_Fee $item */
    6768        foreach ( $order->get_items( 'fee' ) as $item ) {
    68             $cart_items[] = $this->create_fee_cart_item( $item, $currency );
     69            $cart_items[] = $this->create_fee_cart_item( $item, $currency, $gateway_code );
    6970        }
    7071
     
    9495     * @param WC_Order_Item_Product $item
    9596     * @param string                $currency
     97     * @param string                $gateway_code
    9698     * @return CartItem
    9799     */
    98     private function create_cart_item( WC_Order_Item_Product $item, string $currency ): CartItem {
     100    private function create_cart_item( WC_Order_Item_Product $item, string $currency, string $gateway_code ): CartItem {
    99101        $merchant_item_id = apply_filters( 'multisafepay_merchant_item_id', (string) $item->get_variation_id() ? $item->get_variation_id() : $item->get_product_id(), $item );
    100102        $product_name     = $item->get_name();
     
    115117            ->addMerchantItemId( (string) $merchant_item_id )
    116118            ->addUnitPrice( MoneyUtil::create_money( $product_price, $currency ) )
    117             ->addTaxRate( $this->get_item_tax_rate( $item ) );
     119            ->addTaxRate( $this->get_item_tax_rate( $item, $gateway_code ) );
    118120    }
    119121
     
    122124     *
    123125     * @param WC_Order_Item_Product $item
    124      * @return float
    125      */
    126     private function get_item_tax_rate( WC_Order_Item_Product $item ): float {
     126     * @param string                $gateway_code
     127     * @return float
     128     */
     129    private function get_item_tax_rate( WC_Order_Item_Product $item, string $gateway_code ): float {
    127130        if ( ! wc_tax_enabled() ) {
    128131            return 0;
     
    150153                break;
    151154        }
    152         return $tax_rate;
     155
     156        return $this->rounding_filter( $tax_rate, $gateway_code );
    153157    }
    154158
     
    156160     * @param WC_Order_Item_Shipping $item
    157161     * @param string                 $currency
     162     * @param string                 $gateway_code
    158163     * @return ShippingItem
    159164     */
    160     private function create_shipping_cart_item( WC_Order_Item_Shipping $item, string $currency ): ShippingItem {
     165    private function create_shipping_cart_item( WC_Order_Item_Shipping $item, string $currency, string $gateway_code ): ShippingItem {
    161166        $cart_item = new ShippingItem();
    162167        return $cart_item->addName( __( 'Shipping', 'multisafepay' ) )
    163168            ->addQuantity( 1 )
    164169            ->addUnitPrice( MoneyUtil::create_money( (float) $item->get_total(), $currency ) )
    165             ->addTaxRate( $this->get_shipping_tax_rate( $item ) );
     170            ->addTaxRate( $this->get_shipping_tax_rate( $item, $gateway_code ) );
    166171    }
    167172
     
    170175     *
    171176     * @param WC_Order_Item_Shipping $item
    172      * @return float
    173      */
    174     private function get_shipping_tax_rate( WC_Order_Item_Shipping $item ): float {
     177     * @param string                 $gateway_code
     178     * @return float
     179     */
     180    private function get_shipping_tax_rate( WC_Order_Item_Shipping $item, string $gateway_code ): float {
    175181        if ( ! wc_tax_enabled() ) {
    176182            return 0;
     
    191197        $total_tax = array_sum( $taxes['total'] );
    192198        $tax_rate  = ( (float) $total_tax * 100 ) / (float) $item->get_total();
    193         return $tax_rate;
     199
     200        return $this->rounding_filter( $tax_rate, $gateway_code );
    194201    }
    195202
     
    197204     * @param WC_Order_Item_Fee $item
    198205     * @param string            $currency
     206     * @param string            $gateway_code
    199207     * @return CartItem
    200208     */
    201     private function create_fee_cart_item( WC_Order_Item_Fee $item, string $currency ): CartItem {
     209    private function create_fee_cart_item( WC_Order_Item_Fee $item, string $currency, string $gateway_code ): CartItem {
    202210        $cart_item = new CartItem();
    203211        return $cart_item->addName( $item->get_name() )
     
    205213            ->addMerchantItemId( (string) $item->get_id() )
    206214            ->addUnitPrice( MoneyUtil::create_money( (float) $item->get_total(), $currency ) )
    207             ->addTaxRate( $this->get_fee_tax_rate( $item ) );
     215            ->addTaxRate( $this->get_fee_tax_rate( $item, $gateway_code ) );
    208216    }
    209217
     
    212220     *
    213221     * @param WC_Order_Item_Fee $item
    214      * @return float
    215      */
    216     private function get_fee_tax_rate( WC_Order_Item_Fee $item ): float {
     222     * @param string            $gateway_code
     223     * @return float
     224     */
     225    private function get_fee_tax_rate( WC_Order_Item_Fee $item, string $gateway_code ): float {
    217226        if ( ! wc_tax_enabled() ) {
    218227            return 0;
     
    235244        $total_tax = array_sum( $taxes['total'] );
    236245        $tax_rate  = ( (float) $total_tax * 100 ) / (float) $item->get_total();
    237         return $tax_rate;
     246
     247        return $this->rounding_filter( $tax_rate, $gateway_code );
    238248    }
    239249
     
    263273    }
    264274
     275    /**
     276     * @param float  $tax_rate
     277     * @param string $gateway_code
     278     * @return float
     279     */
     280    private function rounding_filter( float $tax_rate, string $gateway_code ): float {
     281        if ( 'BILLINK' !== $gateway_code ) {
     282            return $tax_rate;
     283        }
     284
     285        $allowed_rates = array( 0, 5, 6, 7, 9, 16, 19, 20, 21 );
     286
     287        foreach ( $allowed_rates as $rate ) {
     288            if ( abs( $tax_rate - $rate ) <= 0.15 ) {
     289                return round( $tax_rate );
     290            }
     291        }
     292
     293        return $tax_rate;
     294    }
    265295}
  • multisafepay/tags/6.7.3/vendor/autoload.php

    r3240589 r3250284  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4::getLoader();
     25return ComposerAutoloaderInitd751dfc969be7438cc025668cde0624e::getLoader();
  • multisafepay/tags/6.7.3/vendor/composer/autoload_real.php

    r3240589 r3250284  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4
     5class ComposerAutoloaderInitd751dfc969be7438cc025668cde0624e
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitd751dfc969be7438cc025668cde0624e', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitd751dfc969be7438cc025668cde0624e', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInitd751dfc969be7438cc025668cde0624e::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • multisafepay/tags/6.7.3/vendor/composer/autoload_static.php

    r3240589 r3250284  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit11f1daa923d534ef4a1e0351581144f4
     7class ComposerStaticInitd751dfc969be7438cc025668cde0624e
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    6363    {
    6464        return \Closure::bind(function () use ($loader) {
    65             $loader->prefixLengthsPsr4 = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$prefixLengthsPsr4;
    66             $loader->prefixDirsPsr4 = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$prefixDirsPsr4;
    67             $loader->classMap = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$classMap;
     65            $loader->prefixLengthsPsr4 = ComposerStaticInitd751dfc969be7438cc025668cde0624e::$prefixLengthsPsr4;
     66            $loader->prefixDirsPsr4 = ComposerStaticInitd751dfc969be7438cc025668cde0624e::$prefixDirsPsr4;
     67            $loader->classMap = ComposerStaticInitd751dfc969be7438cc025668cde0624e::$classMap;
    6868
    6969        }, null, ClassLoader::class);
  • multisafepay/tags/6.7.3/vendor/composer/installed.php

    r3240589 r3250284  
    22    'root' => array(
    33        'name' => 'multisafepay/woocommerce',
    4         'pretty_version' => '6.7.2',
    5         'version' => '6.7.2.0',
     4        'pretty_version' => '6.7.3',
     5        'version' => '6.7.3.0',
    66        'reference' => null,
    77        'type' => 'wordpress-plugin',
     
    2121        ),
    2222        'multisafepay/woocommerce' => array(
    23             'pretty_version' => '6.7.2',
    24             'version' => '6.7.2.0',
     23            'pretty_version' => '6.7.3',
     24            'version' => '6.7.3.0',
    2525            'reference' => null,
    2626            'type' => 'wordpress-plugin',
  • multisafepay/trunk/multisafepay.php

    r3240589 r3250284  
    55 * Plugin URI:              https://docs.multisafepay.com/docs/woocommerce
    66 * Description:             MultiSafepay Payment Plugin
    7  * Version:                 6.7.2
     7 * Version:                 6.7.3
    88 * Author:                  MultiSafepay
    99 * Author URI:              https://www.multisafepay.com
     
    1414 * Tested up to:            6.7.2
    1515 * WC requires at least:    6.0.0
    16  * WC tested up to:         9.6.2
     16 * WC tested up to:         9.7.0
    1717 * Requires PHP:            7.3
    1818 * Text Domain:             multisafepay
     
    2727 * Plugin version
    2828 */
    29 define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.7.2' );
     29define( 'MULTISAFEPAY_PLUGIN_VERSION', '6.7.3' );
    3030
    3131/**
  • multisafepay/trunk/readme.txt

    r3240589 r3250284  
    55Tested up to: 6.7.2
    66Requires PHP: 7.3
    7 Stable tag: 6.7.2
     7Stable tag: 6.7.3
    88License: MIT
    99
     
    128128== Upgrade Notice ==
    129129
    130 = 6.7.2 =
     130= 6.7.3 =
    1311316.x.x is a major upgrade in which the MultiSafepay payment methods are registered dynamically via an API request to MultiSafepay. If you are upgrading from 5.X.X version, after the upgrade, please navigate to the MultiSafepay settings page, and to each one of the payment methods enabled in your account, and confirm the settings in each section are set up according to your preferences.
    132132
     
    144144
    145145== Changelog ==
     146= Release Notes - WooCommerce 6.7.3 (Mar 4th, 2025) =
     147
     148### Fixed
     149+ PLGWOOS-973: Round shopping cart item tax rates in BILLINK gateway
     150
    146151= Release Notes - WooCommerce 6.7.2 (Feb 14th, 2025) =
    147152
  • multisafepay/trunk/src/Services/OrderService.php

    r3230524 r3250284  
    7171
    7272        if ( ! get_option( 'multisafepay_disable_shopping_cart', false ) || in_array( $gateway_code, GatewaysSdk::SHOPPING_CART_REQUIRED_GATEWAYS, true ) ) {
    73             $order_request->addShoppingCart( $this->shopping_cart_service->create_shopping_cart( $order, $order->get_currency() ) );
     73            $order_request->addShoppingCart( $this->shopping_cart_service->create_shopping_cart( $order, $order->get_currency(), $gateway_code ) );
    7474        }
    7575
  • multisafepay/trunk/src/Services/ShoppingCartService.php

    r3114383 r3250284  
    3737
    3838    /**
    39      * @param WC_Order $order
    40      * @param string   $currency
     39     * @param WC_Order    $order
     40     * @param string      $currency
     41     * @param string|null $gateway_code
    4142     * @return ShoppingCart
    4243     */
    43     public function create_shopping_cart( WC_Order $order, string $currency ): ShoppingCart {
     44    public function create_shopping_cart( WC_Order $order, string $currency, ?string $gateway_code = '' ): ShoppingCart {
    4445
    4546        // If coupon type is percentage, fixed_product type, or fixed_cart, which comes by default in WooCommerce,
     
    5657        /** @var WC_Order_Item_Product $item */
    5758        foreach ( $order->get_items() as $item ) {
    58             $cart_items[] = $this->create_cart_item( $item, $currency );
     59            $cart_items[] = $this->create_cart_item( $item, $currency, $gateway_code );
    5960        }
    6061
    6162        /** @var WC_Order_Item_Shipping $item */
    6263        foreach ( $order->get_items( 'shipping' ) as $item ) {
    63             $cart_items[] = $this->create_shipping_cart_item( $item, $currency );
     64            $cart_items[] = $this->create_shipping_cart_item( $item, $currency, $gateway_code );
    6465        }
    6566
    6667        /** @var WC_Order_Item_Fee $item */
    6768        foreach ( $order->get_items( 'fee' ) as $item ) {
    68             $cart_items[] = $this->create_fee_cart_item( $item, $currency );
     69            $cart_items[] = $this->create_fee_cart_item( $item, $currency, $gateway_code );
    6970        }
    7071
     
    9495     * @param WC_Order_Item_Product $item
    9596     * @param string                $currency
     97     * @param string                $gateway_code
    9698     * @return CartItem
    9799     */
    98     private function create_cart_item( WC_Order_Item_Product $item, string $currency ): CartItem {
     100    private function create_cart_item( WC_Order_Item_Product $item, string $currency, string $gateway_code ): CartItem {
    99101        $merchant_item_id = apply_filters( 'multisafepay_merchant_item_id', (string) $item->get_variation_id() ? $item->get_variation_id() : $item->get_product_id(), $item );
    100102        $product_name     = $item->get_name();
     
    115117            ->addMerchantItemId( (string) $merchant_item_id )
    116118            ->addUnitPrice( MoneyUtil::create_money( $product_price, $currency ) )
    117             ->addTaxRate( $this->get_item_tax_rate( $item ) );
     119            ->addTaxRate( $this->get_item_tax_rate( $item, $gateway_code ) );
    118120    }
    119121
     
    122124     *
    123125     * @param WC_Order_Item_Product $item
    124      * @return float
    125      */
    126     private function get_item_tax_rate( WC_Order_Item_Product $item ): float {
     126     * @param string                $gateway_code
     127     * @return float
     128     */
     129    private function get_item_tax_rate( WC_Order_Item_Product $item, string $gateway_code ): float {
    127130        if ( ! wc_tax_enabled() ) {
    128131            return 0;
     
    150153                break;
    151154        }
    152         return $tax_rate;
     155
     156        return $this->rounding_filter( $tax_rate, $gateway_code );
    153157    }
    154158
     
    156160     * @param WC_Order_Item_Shipping $item
    157161     * @param string                 $currency
     162     * @param string                 $gateway_code
    158163     * @return ShippingItem
    159164     */
    160     private function create_shipping_cart_item( WC_Order_Item_Shipping $item, string $currency ): ShippingItem {
     165    private function create_shipping_cart_item( WC_Order_Item_Shipping $item, string $currency, string $gateway_code ): ShippingItem {
    161166        $cart_item = new ShippingItem();
    162167        return $cart_item->addName( __( 'Shipping', 'multisafepay' ) )
    163168            ->addQuantity( 1 )
    164169            ->addUnitPrice( MoneyUtil::create_money( (float) $item->get_total(), $currency ) )
    165             ->addTaxRate( $this->get_shipping_tax_rate( $item ) );
     170            ->addTaxRate( $this->get_shipping_tax_rate( $item, $gateway_code ) );
    166171    }
    167172
     
    170175     *
    171176     * @param WC_Order_Item_Shipping $item
    172      * @return float
    173      */
    174     private function get_shipping_tax_rate( WC_Order_Item_Shipping $item ): float {
     177     * @param string                 $gateway_code
     178     * @return float
     179     */
     180    private function get_shipping_tax_rate( WC_Order_Item_Shipping $item, string $gateway_code ): float {
    175181        if ( ! wc_tax_enabled() ) {
    176182            return 0;
     
    191197        $total_tax = array_sum( $taxes['total'] );
    192198        $tax_rate  = ( (float) $total_tax * 100 ) / (float) $item->get_total();
    193         return $tax_rate;
     199
     200        return $this->rounding_filter( $tax_rate, $gateway_code );
    194201    }
    195202
     
    197204     * @param WC_Order_Item_Fee $item
    198205     * @param string            $currency
     206     * @param string            $gateway_code
    199207     * @return CartItem
    200208     */
    201     private function create_fee_cart_item( WC_Order_Item_Fee $item, string $currency ): CartItem {
     209    private function create_fee_cart_item( WC_Order_Item_Fee $item, string $currency, string $gateway_code ): CartItem {
    202210        $cart_item = new CartItem();
    203211        return $cart_item->addName( $item->get_name() )
     
    205213            ->addMerchantItemId( (string) $item->get_id() )
    206214            ->addUnitPrice( MoneyUtil::create_money( (float) $item->get_total(), $currency ) )
    207             ->addTaxRate( $this->get_fee_tax_rate( $item ) );
     215            ->addTaxRate( $this->get_fee_tax_rate( $item, $gateway_code ) );
    208216    }
    209217
     
    212220     *
    213221     * @param WC_Order_Item_Fee $item
    214      * @return float
    215      */
    216     private function get_fee_tax_rate( WC_Order_Item_Fee $item ): float {
     222     * @param string            $gateway_code
     223     * @return float
     224     */
     225    private function get_fee_tax_rate( WC_Order_Item_Fee $item, string $gateway_code ): float {
    217226        if ( ! wc_tax_enabled() ) {
    218227            return 0;
     
    235244        $total_tax = array_sum( $taxes['total'] );
    236245        $tax_rate  = ( (float) $total_tax * 100 ) / (float) $item->get_total();
    237         return $tax_rate;
     246
     247        return $this->rounding_filter( $tax_rate, $gateway_code );
    238248    }
    239249
     
    263273    }
    264274
     275    /**
     276     * @param float  $tax_rate
     277     * @param string $gateway_code
     278     * @return float
     279     */
     280    private function rounding_filter( float $tax_rate, string $gateway_code ): float {
     281        if ( 'BILLINK' !== $gateway_code ) {
     282            return $tax_rate;
     283        }
     284
     285        $allowed_rates = array( 0, 5, 6, 7, 9, 16, 19, 20, 21 );
     286
     287        foreach ( $allowed_rates as $rate ) {
     288            if ( abs( $tax_rate - $rate ) <= 0.15 ) {
     289                return round( $tax_rate );
     290            }
     291        }
     292
     293        return $tax_rate;
     294    }
    265295}
  • multisafepay/trunk/vendor/autoload.php

    r3240589 r3250284  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4::getLoader();
     25return ComposerAutoloaderInitd751dfc969be7438cc025668cde0624e::getLoader();
  • multisafepay/trunk/vendor/composer/autoload_real.php

    r3240589 r3250284  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4
     5class ComposerAutoloaderInitd751dfc969be7438cc025668cde0624e
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitd751dfc969be7438cc025668cde0624e', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit11f1daa923d534ef4a1e0351581144f4', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitd751dfc969be7438cc025668cde0624e', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInitd751dfc969be7438cc025668cde0624e::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • multisafepay/trunk/vendor/composer/autoload_static.php

    r3240589 r3250284  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit11f1daa923d534ef4a1e0351581144f4
     7class ComposerStaticInitd751dfc969be7438cc025668cde0624e
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    6363    {
    6464        return \Closure::bind(function () use ($loader) {
    65             $loader->prefixLengthsPsr4 = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$prefixLengthsPsr4;
    66             $loader->prefixDirsPsr4 = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$prefixDirsPsr4;
    67             $loader->classMap = ComposerStaticInit11f1daa923d534ef4a1e0351581144f4::$classMap;
     65            $loader->prefixLengthsPsr4 = ComposerStaticInitd751dfc969be7438cc025668cde0624e::$prefixLengthsPsr4;
     66            $loader->prefixDirsPsr4 = ComposerStaticInitd751dfc969be7438cc025668cde0624e::$prefixDirsPsr4;
     67            $loader->classMap = ComposerStaticInitd751dfc969be7438cc025668cde0624e::$classMap;
    6868
    6969        }, null, ClassLoader::class);
  • multisafepay/trunk/vendor/composer/installed.php

    r3240589 r3250284  
    22    'root' => array(
    33        'name' => 'multisafepay/woocommerce',
    4         'pretty_version' => '6.7.2',
    5         'version' => '6.7.2.0',
     4        'pretty_version' => '6.7.3',
     5        'version' => '6.7.3.0',
    66        'reference' => null,
    77        'type' => 'wordpress-plugin',
     
    2121        ),
    2222        'multisafepay/woocommerce' => array(
    23             'pretty_version' => '6.7.2',
    24             'version' => '6.7.2.0',
     23            'pretty_version' => '6.7.3',
     24            'version' => '6.7.3.0',
    2525            'reference' => null,
    2626            'type' => 'wordpress-plugin',
Note: See TracChangeset for help on using the changeset viewer.