diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-31 10:08:43 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-04-20 16:43:43 +0200 |
commit | 3cf447ac448afb4d12131a0b0393e130e2613ea0 (patch) | |
tree | 98128ce8ea3af4872145bce53003db42e03739b4 /lib/private/L10N | |
parent | 2b8e47dcace5d329a874c0dfa9a30cfbc551ca80 (diff) | |
download | nextcloud-server-3cf447ac448afb4d12131a0b0393e130e2613ea0.tar.gz nextcloud-server-3cf447ac448afb4d12131a0b0393e130e2613ea0.zip |
Fix PHP CS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/L10N')
-rw-r--r-- | lib/private/L10N/L10NString.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/L10N/L10NString.php b/lib/private/L10N/L10NString.php index 0722057de02..9d219ea1772 100644 --- a/lib/private/L10N/L10NString.php +++ b/lib/private/L10N/L10NString.php @@ -74,7 +74,7 @@ class L10NString implements \JsonSerializable { } $identity = implode('|', $identity); - } else if (strpos($identity, '|') !== false) { + } elseif (strpos($identity, '|') !== false) { return 'Can not use pipe character in translations'; } |