Skip to content

Commit 43ac6eb

Browse files
authored
Merge pull request #1 from fortifi/php5-compatability-fix
removed types from method parameters to ensure php5 compatibility
2 parents 9e717ad + 7ec0b70 commit 43ac6eb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cnp/sdk/DynamicConfig.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ class DynamicConfig
5353
*
5454
* @throws \Exception
5555
*/
56-
public static function setConfig(
57-
string $username, string $password, string $merchantID, string $mode
58-
)
56+
public static function setConfig($username, $password, $merchantID, $mode)
5957
{
6058
self::$config['user'] = $username;
6159
self::$config['password'] = $password;

0 commit comments

Comments
 (0)