Skip to content
Snippets Groups Projects
Commit c94b85b6 authored by Sven Decabooter's avatar Sven Decabooter
Browse files

Issue #3411420: code style fixes

parent 694fb6ce
No related branches found
No related tags found
No related merge requests found
......@@ -161,6 +161,20 @@ class SymfonyMailerLog extends ContentEntityBase implements SymfonyMailerLogInte
return $this;
}
/**
* {@inheritdoc}
*/
public function getErrorMessage(): ?string {
return $this->get('error_message');
}
/**
* {@inheritdoc}
*/
public function setErrorMessage(string $errorMessage) {
$this->set('error_message', $errorMessage);
}
/**
* {@inheritdoc}
*/
......@@ -298,18 +312,4 @@ class SymfonyMailerLog extends ContentEntityBase implements SymfonyMailerLogInte
return $fields;
}
/**
* {@inheritdoc}
*/
public function getErrorMessage(): string|null {
return $this->get('error_message');
}
/**
* {@inheritdoc}
*/
public function setErrorMessage(string $errorMessage) {
$this->set('error_message', $errorMessage);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment