Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
AngryMoustache authored and github-actions[bot] committed Oct 17, 2023
1 parent d771816 commit d5cf36a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/MailTemplateFallbacks.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,36 @@

class MailTemplateFallbacks
{
public null|string $fromName = null;
public null|string $fromMail = null;
public ?string $fromName = null;

public ?string $fromMail = null;

public function __construct()
{
$this->fromName = config('mail.from.name');
$this->fromMail = config('mail.from.address');
}

public function fromName(null|string $fromName): self
public function fromName(?string $fromName): self
{
$this->fromName = $fromName;

return $this;
}

public function getFromName(): null|string
public function getFromName(): ?string
{
return $this->fromName;
}

public function fromMail(null|string $fromMail): self
public function fromMail(?string $fromMail): self
{
$this->fromMail = $fromMail;

return $this;
}

public function getFromMail(): null|string
public function getFromMail(): ?string
{
return $this->fromMail;
}
Expand Down

0 comments on commit d5cf36a

Please sign in to comment.