Skip to content

Commit 1814050

Browse files
authored
1 parent 7136cb4 commit 1814050

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.rector.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
CodingStyle\ClassMethod\MakeInheritedMethodVisibilitySameAsParentRector::class, # todo: TMP
7676
CodingStyle\Encapsed\EncapsedStringsToSprintfRector::class, # todo: TMP
7777
CodingStyle\Encapsed\WrapEncapsedVariableInCurlyBracesRector::class, # todo: TMP
78-
CodingStyle\FuncCall\CallUserFuncArrayToVariadicRector::class, # todo: TMP
7978
CodingStyle\FuncCall\StrictArraySearchRector::class, # todo: TMP
8079
CodingStyle\If_\NullableCompareToNullRector::class, # todo: TMP
8180
CodingStyle\PostInc\PostIncDecToPreIncDecRector::class, # todo: TMP

app/code/core/Mage/Paygate/Helper/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function getExtendedTransactionMessage(
111111
$pattern .= ' %s';
112112
$texts[] = $exception;
113113

114-
return call_user_func_array([$this, '__'], array_merge([$pattern], $texts));
114+
return $this->__(...array_merge([$pattern], $texts));
115115
}
116116

117117
/**

0 commit comments

Comments
 (0)