Skip to content

Commit

Permalink
Merge pull request #1 from fortifi/php5-compatability-fix
Browse files Browse the repository at this point in the history
removed types from method parameters to ensure php5 compatibility
  • Loading branch information
infurio authored Mar 26, 2019
2 parents 9e717ad + 7ec0b70 commit 43ac6eb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cnp/sdk/DynamicConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ class DynamicConfig
*
* @throws \Exception
*/
public static function setConfig(
string $username, string $password, string $merchantID, string $mode
)
public static function setConfig($username, $password, $merchantID, $mode)
{
self::$config['user'] = $username;
self::$config['password'] = $password;
Expand Down

0 comments on commit 43ac6eb

Please sign in to comment.