Skip to content

Commit

Permalink
Merge pull request #20 from wirecard/php_7.1_compatibility
Browse files Browse the repository at this point in the history
Add php 7.1 compatibility
  • Loading branch information
rinnhofer authored Sep 13, 2017
2 parents c36fbf5 + 67ce3c1 commit a0c8931
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 27 deletions.
2 changes: 1 addition & 1 deletion app/code/community/Wirecard/CheckoutPage/Helper/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
class Wirecard_CheckoutPage_Helper_Data extends Mage_Payment_Helper_Data
{

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

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

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

protected $_formBlockType = 'wirecard_checkoutpage/form';
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Wirecard/CheckoutPage/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<config>
<modules>
<wirecard_checkoutpage>
<version>4.2.1</version>
<version>4.2.2</version>
</wirecard_checkoutpage>
</modules>
<global>
Expand Down
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 a0c8931

Please sign in to comment.