Skip to content

Commit 97e32f4

Browse files
committed
refactor: fix FunctionFirstClassCallableRector
1 parent c3f5bae commit 97e32f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/Config/BaseConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public function __construct()
134134
if ($property === 'key') {
135135
$this->{$property} = $this->parseEncryptionKey($this->{$property});
136136
} elseif ($property === 'previousKeys') {
137-
$keysArray = array_map('trim', explode(',', $this->{$property}));
137+
$keysArray = array_map(trim(...), explode(',', $this->{$property}));
138138
$parsedKeys = [];
139139

140140
foreach ($keysArray as $key) {

0 commit comments

Comments
 (0)