more minor fixes and code-cleaning

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-08-10 12:01:26 +02:00
parent e82d7b5d8b
commit 94a19ee2b6
16 changed files with 33 additions and 29 deletions

View File

@@ -34,11 +34,11 @@ class Mailer extends PHPMailer
/**
* class constructor
*
* @param string $exceptions
* @param bool $exceptions
* whether to throw exceptions or not
*
*/
public function __construct($exceptions = false)
public function __construct(bool $exceptions = false)
{
parent::__construct($exceptions);
$this->CharSet = "UTF-8";