fix erros in Util namespace

This commit is contained in:
Art4 2024-11-16 17:16:26 +00:00
parent c74ed3d2b9
commit e97231683a
4 changed files with 7 additions and 11 deletions

View file

@ -109,9 +109,9 @@ class NotifyMailBuilder extends MailBuilder
public function withPhoto(string $image, string $link, string $name)
{
$this->photo = [
'image' => $image ?? '',
'link' => $link ?? '',
'name' => $name ?? '',
'image' => $image,
'link' => $link,
'name' => $name,
];
return $this;