Remove unused variable assignments

This commit is contained in:
2022-09-15 21:06:32 +02:00
parent 80fd164439
commit ac9b12618d
38 changed files with 42 additions and 83 deletions

View File

@ -17,8 +17,7 @@ final class MDOutputBufferNotStarted extends Exception {
*/
public function errorMessage() {
//error message
$errorMsg = 'Output buffer has not yet been started, is to be used: ' . $this->getMessage();
return $errorMsg;
return 'Output buffer has not yet been started, is to be used: ' . $this->getMessage();
}
}