-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from logeecom/3.5-4.0
Release version 1.0.19
- Loading branch information
Showing
24 changed files
with
577 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
"packages": [ | ||
{ | ||
"name": "mollie/integration-core", | ||
"version": "1.3.9", | ||
"version_normalized": "1.3.9.0", | ||
"version": "1.3.10", | ||
"version_normalized": "1.3.10.0", | ||
"source": { | ||
"type": "git", | ||
"url": "[email protected]:mollie/orocore.git", | ||
"reference": "8a07e5e317dfbffeaa552820ee843701a24a8fd5" | ||
"reference": "c651e7ca353219121dbe13cca34fc02393a9cb2c" | ||
}, | ||
"dist": { | ||
"type": "zip", | ||
"url": "https://api.github.com/repos/mollie/orocore/zipball/8a07e5e317dfbffeaa552820ee843701a24a8fd5", | ||
"reference": "8a07e5e317dfbffeaa552820ee843701a24a8fd5", | ||
"url": "https://api.github.com/repos/mollie/orocore/zipball/c651e7ca353219121dbe13cca34fc02393a9cb2c", | ||
"reference": "c651e7ca353219121dbe13cca34fc02393a9cb2c", | ||
"shasum": "" | ||
}, | ||
"require": { | ||
|
@@ -24,7 +24,7 @@ | |
"phpunit/phpunit": "^4.8.35", | ||
"symfony/console": "^5.1" | ||
}, | ||
"time": "2024-09-16T12:55:55+00:00", | ||
"time": "2024-09-27T09:30:33+00:00", | ||
"type": "library", | ||
"installation-source": "source", | ||
"autoload": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
use Mollie\BusinessLogic\PaymentMethod\Model\PaymentMethodConfig; | ||
|
||
require_once __DIR__ . '/mollie/mollie.php'; | ||
|
||
/** | ||
* Class mollie_alma | ||
*/ | ||
class mollie_alma extends mollie | ||
{ | ||
public $title = 'Alma'; | ||
|
||
/** | ||
* @inheritDoc | ||
* @return array | ||
*/ | ||
public function keys() | ||
{ | ||
$keys = parent::keys(); | ||
$hidden = ['MODULE_PAYMENT_' . strtoupper($this->code) . '_API_METHOD']; | ||
return array_values(array_diff($keys, $hidden)); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
protected function _getDefaultApi() | ||
{ | ||
return PaymentMethodConfig::API_METHOD_PAYMENT; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
use Mollie\BusinessLogic\PaymentMethod\Model\PaymentMethodConfig; | ||
|
||
require_once __DIR__ . '/mollie/mollie.php'; | ||
|
||
/** | ||
* Class mollie_twint | ||
*/ | ||
class mollie_twint extends mollie | ||
{ | ||
public $title = 'Twint'; | ||
|
||
/** | ||
* @inheritDoc | ||
* | ||
* @return array | ||
*/ | ||
public function keys() | ||
{ | ||
$keys = parent::keys(); | ||
$hidden = ['MODULE_PAYMENT_' . strtoupper($this->code) . '_API_METHOD']; | ||
|
||
return array_values(array_diff($keys, $hidden)); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
protected function _getDefaultApi() | ||
{ | ||
return PaymentMethodConfig::API_METHOD_PAYMENT; | ||
} | ||
} |
Oops, something went wrong.