Skip to content

Commit 3a149b5

Browse files
committed
small cs fix
1 parent c925b01 commit 3a149b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

program/lib/Roundcube/rcube_csv2vcard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public function import($csv, $dry_run = false, $skip_head = true)
184184
public function set_map($elements, $available)
185185
{
186186
// sanitize input
187-
$elements = array_filter($elements, function ($val) use ($available) {
187+
$elements = array_filter($elements, static function ($val) use ($available) {
188188
return in_array($val, $available);
189189
});
190190

0 commit comments

Comments
 (0)