Use !== over != in MDErrorReporter

This commit is contained in:
Joshua Ramon Enslin 2021-07-24 23:16:59 +02:00
parent 96f5dd8108
commit 2fd7511218
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -156,7 +156,7 @@ final class MDErrorReporter {
$msg .= $this->_formulateDebugMailSection("Context information", $contextInfo); $msg .= $this->_formulateDebugMailSection("Context information", $contextInfo);
} }
if ($description != "") { if ($description !== "") {
$msg .= "## Description" . PHP_EOL; $msg .= "## Description" . PHP_EOL;
$msg .= "--------------" . PHP_EOL . PHP_EOL; $msg .= "--------------" . PHP_EOL . PHP_EOL;
$msg .= "$description" . PHP_EOL; $msg .= "$description" . PHP_EOL;