can someone update the following in Name.php line 22
FROM
/**
* constructor takes the array of parts this name consists of
*
* @param array|null $parts
*/
public function __construct(array $parts = null)
{
if (null !== $parts) {
$this->setParts($parts);
}
}
TO
/**
* constructor takes the array of parts this name consists of
*
* @param array|null $parts
*/
public function __construct(?array $parts = null)
{
if (null !== $parts) {
$this->setParts($parts);
}
}
also in the following:
- Part\LastnamePrefix.php @ line 9
- Part\PreNormalizedPart.php @ line 9
can someone update the following in Name.php line 22
FROM
TO
also in the following: