From 81970a5c021b4ff9122208311fac2cdc01898f90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Gu=CC=88nther?= Date: Fri, 5 Jan 2024 14:48:35 +0100 Subject: [PATCH] BUGFIX: Resolve StyleCI issues --- Neos.Fusion/Classes/Core/Parser.php | 2 +- .../Controller/Module/Management/WorkspacesController.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Neos.Fusion/Classes/Core/Parser.php b/Neos.Fusion/Classes/Core/Parser.php index c0ab73aebc3..d29f1c8259f 100644 --- a/Neos.Fusion/Classes/Core/Parser.php +++ b/Neos.Fusion/Classes/Core/Parser.php @@ -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)) { diff --git a/Neos.Neos/Classes/Controller/Module/Management/WorkspacesController.php b/Neos.Neos/Classes/Controller/Module/Management/WorkspacesController.php index c5ade354882..d0aeeae4dc3 100644 --- a/Neos.Neos/Classes/Controller/Module/Management/WorkspacesController.php +++ b/Neos.Neos/Classes/Controller/Module/Management/WorkspacesController.php @@ -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)