Autofix long scalar typehints to short ones

[MAILPOET-2715]
This commit is contained in:
Jan Jakeš
2020-02-17 13:23:00 +01:00
committed by Jack Kitterhing
parent 56286bfd11
commit 153c72cd77
11 changed files with 17 additions and 17 deletions

View File

@@ -37,7 +37,7 @@ class Analytics {
return null;
}
/** @return boolean */
/** @return bool */
public function isEnabled() {
$analyticsSettings = $this->settings->get('analytics', []);
return !empty($analyticsSettings['enabled']) === true;
@@ -69,7 +69,7 @@ class Analytics {
/**
* Returns true if a the public_id was added and update new_public_id to false
* @return boolean
* @return bool
*/
public function isPublicIdNew() {
$newPublicId = $this->settings->get('new_public_id');