We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9a0e15 commit 637692eCopy full SHA for 637692e
src/ConvertKit_API.php
@@ -142,7 +142,8 @@ private function create_log(string $message)
142
// Mask email addresses that may be contained within the message.
143
$message = preg_replace_callback(
144
'^[_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
+ // @phpstan-ignore-next-line - see https://github.com/phpstan/phpstan/issues/10396
146
+ function ($matches) {
147
return preg_replace('/\B[^@.]/', '*', $matches[0]);
148
},
149
$message
0 commit comments