Skip to content

Commit

Permalink
Fix style violations.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpunkass committed Dec 9, 2024
1 parent 1fdfe6c commit afa49f4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/FileIntegrity.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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)) . '"';

Check failure on line 141 in core/FileIntegrity.php

View workflow job for this annotation

GitHub Actions / PHPCS

Whitespace found at end of line
}

$deleteAllAtOnce = array();
Expand Down

0 comments on commit afa49f4

Please sign in to comment.