Skip to content

Commit

Permalink
Merge pull request #24 from wirecard/php-7.1-compatibility
Browse files Browse the repository at this point in the history
#23 update client library to support php 7.1 constraints
  • Loading branch information
rinnhofer committed Sep 12, 2017
2 parents bbcaaee + d8e1c8d commit f67a6eb
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
class Wirecard_CheckoutSeamless_Helper_Data extends Mage_Payment_Helper_Data
{

protected $_pluginVersion = '4.2.0';
protected $_pluginVersion = '4.2.2';
protected $_pluginName = 'Wirecard/CheckoutSeamless';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ abstract class Wirecard_CheckoutSeamless_Model_Abstract extends Mage_Payment_Mod
protected $_defaultLocale = 'en';

protected $_order;
protected $_pluginVersion = '4.2.0';
protected $_pluginVersion = '4.2.2';
protected $_pluginName = 'Wirecard/CheckoutSeamless';

protected $_formBlockType = 'wirecard_checkoutseamless/form';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<config>
<modules>
<wirecard_checkoutseamless>
<version>4.2.1</version>
<version>4.2.2</version>
</wirecard_checkoutseamless>
</modules>
<global>
Expand Down
2 changes: 1 addition & 1 deletion app/code/local/WirecardCEE/QMore/Config/client.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
'FRONTEND_URL' => 'https://checkout.wirecard.com/seamless/frontend',
'BACKEND_URL' => 'https://checkout.wirecard.com/seamless/backend',
'MODULE_NAME' => 'WirecardCEE_QMore',
'MODULE_VERSION' => '3.3.0',
'MODULE_VERSION' => '3.3.1',
'DEPENDENCIES' => array(),
'USE_DEBUG' => false
);
8 changes: 0 additions & 8 deletions app/code/local/WirecardCEE/Stdlib/Basket.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,6 @@ public function getData()
return $this->_basket;
}

/**
* Destructor
*/
public function __destruct()
{
unset( $this );
}

/***************************************
* PROTECTED METHODS *
***************************************/
Expand Down
8 changes: 0 additions & 8 deletions app/code/local/WirecardCEE/Stdlib/Basket/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,14 +259,6 @@ public function getImageUrl()
return null;
}

/**
* Destructor
*/
public function __destruct()
{
unset( $this );
}

/***************************************
* PROTECTED METHODS *
***************************************/
Expand Down
8 changes: 0 additions & 8 deletions app/code/local/WirecardCEE/Stdlib/Client/ClientAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -292,14 +292,6 @@ public function getRequestData()
return (array) $this->_requestData;
}

/**
* Destructor
*/
public function __destruct()
{
unset( $this );
}

/**************************
* PROTECTED METHODS *
**************************/
Expand Down

0 comments on commit f67a6eb

Please sign in to comment.