Skip to content

Commit 0465946

Browse files
committed
Code-style patch.
1 parent 909401b commit 0465946

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Loader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: The loader (last modified: 2023.06.01).
11+
* This file: The loader (last modified: 2023.08.16).
1212
*/
1313

1414
namespace phpMussel\Core;
@@ -804,7 +804,7 @@ public function parse(array $Needles, string $Haystack = '', bool $L10N = false)
804804
public function pseudonymiseIP(string $IP): string
805805
{
806806
if (($CPos = strpos($IP, ':')) !== false) {
807-
$Parts = [(substr($IP, 0, $CPos) ?: ''), (substr($IP, $CPos +1) ?: '')];
807+
$Parts = [(substr($IP, 0, $CPos) ?: ''), (substr($IP, $CPos + 1) ?: '')];
808808
if (($CPos = strpos($Parts[1], ':')) !== false) {
809809
$Parts[1] = substr($Parts[1], 0, $CPos) ?: '';
810810
}

0 commit comments

Comments
 (0)