Fix return type
parent
28ec4fa7b0
commit
53810b0cfb
|
@ -691,11 +691,16 @@ EOT
|
||||||
/**
|
/**
|
||||||
* @param string $author
|
* @param string $author
|
||||||
*
|
*
|
||||||
* @return array<int, array{name: string, email: string|null}>
|
* @return array<int, array{name: string, email?: string}>
|
||||||
*/
|
*/
|
||||||
protected function formatAuthors($author)
|
protected function formatAuthors($author)
|
||||||
{
|
{
|
||||||
return array(array_filter($this->parseAuthorString($author), 'is_string'));
|
$author = $this->parseAuthorString($author);
|
||||||
|
if (null === $author['email']) {
|
||||||
|
unset($author['email']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return array($author);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue