Skip to content

Commit 144d74e

Browse files
committed
v4.4.0: Fix deprecated parameter as nullable syntax
1 parent 12eb11c commit 144d74e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Helper/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function initScopeData(): void
8383
/**
8484
* Get payment mode (authorization / authorization_capture)
8585
*/
86-
public function getStandardPaymentMode(string $scope = ScopeInterface::SCOPE_WEBSITES, int $websiteId = null): ?string
86+
public function getStandardPaymentMode(string $scope = ScopeInterface::SCOPE_WEBSITES, ?int $websiteId = null): ?string
8787
{
8888
return (string)$this->getConfigValue('', $scope, $websiteId, self::PAYPLUG_PAYMENT_ACTION_CONFIG_PATH);
8989
}

0 commit comments

Comments
 (0)