Skip to content

Commit

Permalink
Merge pull request #4820 from markusguenther/bugfix/styleCi
Browse files Browse the repository at this point in the history
BUGFIX: Resolve StyleCI issues
  • Loading branch information
markusguenther authored Jan 5, 2024
2 parents 24a1488 + 81970a5 commit c895e1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Neos.Fusion/Classes/Core/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ protected function parseInclude($include)
}
$recursiveDirectoryIterator = new \RecursiveDirectoryIterator($basePath);
$iterator = new \RecursiveIteratorIterator($recursiveDirectoryIterator);
// Match simple wildcard globbing "*"
// Match simple wildcard globbing "*"
} elseif (preg_match('#([^\*]*)\*#', $include, $matches) === 1) {
$basePath = $matches['1'];
if (!is_dir($basePath)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,8 @@ protected function renderContentChanges(NodeInterface $changedNode)
'diff' => $diffArray
];
}
// The && in belows condition is on purpose as creating a thumbnail for comparison only works if actually
// BOTH are ImageInterface (or NULL).
// The && in belows condition is on purpose as creating a thumbnail for comparison only works if actually
// BOTH are ImageInterface (or NULL).
} elseif (
($originalPropertyValue instanceof ImageInterface || $originalPropertyValue === null)
&& ($changedPropertyValue instanceof ImageInterface || $changedPropertyValue === null)
Expand Down

0 comments on commit c895e1c

Please sign in to comment.