From 3cf447ac448afb4d12131a0b0393e130e2613ea0 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 31 Mar 2021 10:08:43 +0200 Subject: [PATCH] Fix PHP CS Signed-off-by: Joas Schilling --- lib/private/L10N/L10NString.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/L10N/L10NString.php b/lib/private/L10N/L10NString.php index 0722057de0..9d219ea177 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'; }