Skip to content

Commit

Permalink
Mail: Fix object/string is in isset() not nullable error
Browse files Browse the repository at this point in the history
  • Loading branch information
yhabteab committed Sep 6, 2023
1 parent 713d023 commit 2d40a3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/Reporting/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ class Mail
/** @var string */
public const DEFAULT_SUBJECT = 'Icinga Reporting';

/** @var string */
/** @var ?string */
protected $from;

/** @var string */
protected $subject = self::DEFAULT_SUBJECT;

/** @var Zend_Mail_Transport_Sendmail */
/** @var ?Zend_Mail_Transport_Sendmail */
protected $transport;

/** @var array */
Expand Down

0 comments on commit 2d40a3b

Please sign in to comment.