Remove double space so php-cs stops complaining

Signed-off-by: Johannes Leuker <j.leuker@hosting.de>
This commit is contained in:
noiob 2021-02-24 11:24:17 +01:00 committed by Johannes Leuker
parent b89fbaf52d
commit f28ee36e20
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class SettingsManager {
* @return bool
*/
public function replyToInitiator(): bool {
$replyToInitiator = $this->config->getAppValue('sharebymail', 'replyToInitiator', $this->replyToInitiatorDefault);
$replyToInitiator = $this->config->getAppValue('sharebymail', 'replyToInitiator', $this->replyToInitiatorDefault);
return $replyToInitiator === 'yes';
}
}