Closed weierophinney closed 3 years ago
Found this while testing laminas-mail; $wantedName has a default null value, which means that when calling strtolower() on that value, we may raise a deprecation notice under 8.1 as null values are no longer allowed to that function.
$wantedName
null
strtolower()
Found this while testing laminas-mail;
$wantedName
has a defaultnull
value, which means that when callingstrtolower()
on that value, we may raise a deprecation notice under 8.1 asnull
values are no longer allowed to that function.