From afa49f4fdd2d23ff7937aaa0966526dc0a2b5a3a Mon Sep 17 00:00:00 2001 From: Daniel Jalkut Date: Mon, 9 Dec 2024 09:09:16 -0500 Subject: [PATCH] Fix style violations. --- core/FileIntegrity.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/FileIntegrity.php b/core/FileIntegrity.php index 4bc3bcf9008..a90abf7cc16 100644 --- a/core/FileIntegrity.php +++ b/core/FileIntegrity.php @@ -92,7 +92,7 @@ protected static function getMessagesDirectoriesFoundButNotExpected($messages) $directories = array(); foreach ($directoriesFoundButNotExpected as $directoryFoundNotExpected) { - $directories[] = htmlspecialchars(realpath(dirname($directoryFoundNotExpected)). DIRECTORY_SEPARATOR . basename($directoryFoundNotExpected)); + $directories[] = htmlspecialchars(realpath(dirname($directoryFoundNotExpected)) . DIRECTORY_SEPARATOR . basename($directoryFoundNotExpected)); } $deleteAllAtOnce = array(); @@ -138,8 +138,7 @@ protected static function getMessagesFilesFoundButNotExpected($messages) $files = array(); foreach ($filesFoundButNotExpected as $fileFoundNotExpected) { - $files[] = '"' . htmlspecialchars(realpath(dirname($fileFoundNotExpected)). DIRECTORY_SEPARATOR . basename($fileFoundNotExpected)) . '"'; - + $files[] = '"' . htmlspecialchars(realpath(dirname($fileFoundNotExpected)) . DIRECTORY_SEPARATOR . basename($fileFoundNotExpected)) . '"'; } $deleteAllAtOnce = array();