Skip to content

Commit 637692e

Browse files
committed
Coding standards
1 parent e9a0e15 commit 637692e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ConvertKit_API.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ private function create_log(string $message)
142142
// Mask email addresses that may be contained within the message.
143143
$message = preg_replace_callback(
144144
'^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})^',
145-
function ($matches) { // @phpstan-ignore-line - see https://github.com/phpstan/phpstan/issues/10396
145+
// @phpstan-ignore-next-line - see https://github.com/phpstan/phpstan/issues/10396
146+
function ($matches) {
146147
return preg_replace('/\B[^@.]/', '*', $matches[0]);
147148
},
148149
$message

0 commit comments

Comments
 (0)