From 32f7bc2a95961227846058c0b0cd3c4e4342b23c Mon Sep 17 00:00:00 2001 From: Patrick Teichmann Date: Mon, 12 Sep 2022 17:32:53 +0200 Subject: [PATCH] Dev: psalm whitespace removed --- application/models/FailedEmail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/FailedEmail.php b/application/models/FailedEmail.php index 14e088a601d..b273a97043c 100644 --- a/application/models/FailedEmail.php +++ b/application/models/FailedEmail.php @@ -211,7 +211,7 @@ public function getButtons(): string public function getResponseUrl(): string { $survey = Survey::model()->findByPk($this->surveyid); - if ( $survey !== null && $survey->hasResponsesTable) { + if ($survey !== null && $survey->hasResponsesTable) { $response = Response::model($this->surveyid)->findByPk($this->responseid); if (!empty($response)) { $responseUrl = App()->createUrl("responses/view/", ['surveyId' => $this->surveyid, 'id' => $this->responseid]);