diff --git a/src/Core/Parser/TemplateProcessor/NamespaceDetectionTemplateProcessor.php b/src/Core/Parser/TemplateProcessor/NamespaceDetectionTemplateProcessor.php index 5ddeef6c3..a0dc980ba 100644 --- a/src/Core/Parser/TemplateProcessor/NamespaceDetectionTemplateProcessor.php +++ b/src/Core/Parser/TemplateProcessor/NamespaceDetectionTemplateProcessor.php @@ -50,7 +50,7 @@ public function preProcessSource(string $templateSource): string * of the template string for the exception handler to reference to. * * @todo It should be evaluated if this is really necessary. If it is, it should - * be moved to a separate TemplateProcessor (which would be a breaking change) + * be moved to a separate TemplateProcessor (which would be a breaking change) */ public function replaceCdataSectionsByEmptyLines(string $templateSource): string { diff --git a/src/Core/ViewHelper/Traits/CompileWithContentArgumentAndRenderStatic.php b/src/Core/ViewHelper/Traits/CompileWithContentArgumentAndRenderStatic.php index a43a56aab..6cba677d8 100644 --- a/src/Core/ViewHelper/Traits/CompileWithContentArgumentAndRenderStatic.php +++ b/src/Core/ViewHelper/Traits/CompileWithContentArgumentAndRenderStatic.php @@ -20,8 +20,9 @@ * argument is specified and not empty. * * @deprecated Will be removed in v5. No longer necessary since getContentArgumentName() has been - * integrated into AbstractViewHelper with v2.15. Name has to be specified explicitly by overriding the - * method, implicit definition (= first optional argument) is no longer supported. + * integrated into AbstractViewHelper with v2.15. Name has to be specified explicitly + * by overriding the method, implicit definition (= first optional argument) is no + * longer supported. */ trait CompileWithContentArgumentAndRenderStatic { diff --git a/tests/Functional/ViewHelpers/IfThenElseViewHelperTest.php b/tests/Functional/ViewHelpers/IfThenElseViewHelperTest.php index efce782b1..e278e0f0c 100644 --- a/tests/Functional/ViewHelpers/IfThenElseViewHelperTest.php +++ b/tests/Functional/ViewHelpers/IfThenElseViewHelperTest.php @@ -490,9 +490,9 @@ public static function renderDataProvider(): \Generator ['verdict' => false], 0, ]; - /** + /* * @todo This should work but doesn't at the moment. This is probably related to the boolean - * parser not converting variable nodes correctly. There is a related todo in the BooleanParserTest. + * parser not converting variable nodes correctly. There is a related todo in the BooleanParserTest. yield 'test' => [ 'thenelse', ['test' => '""'], diff --git a/tests/Unit/Core/Parser/BooleanParserTest.php b/tests/Unit/Core/Parser/BooleanParserTest.php index efa4d7c8f..9b497bfc3 100644 --- a/tests/Unit/Core/Parser/BooleanParserTest.php +++ b/tests/Unit/Core/Parser/BooleanParserTest.php @@ -107,7 +107,7 @@ public static function getSomeEvaluationTestValues(): array /* * @todo This should work but doesn't at the moment. This is probably related to the boolean - * parser not converting variable nodes correctly. There is a related todo in the IfThenElseViewHelperTest. + * parser not converting variable nodes correctly. There is a related todo in the IfThenElseViewHelperTest. ['{foo}', true, ['foo' => '""']], */ ];