From ea0b95f639d3a5cd1cdc68d5fea7842dae97c9af Mon Sep 17 00:00:00 2001 From: Benjamin Kott Date: Mon, 11 Nov 2024 11:13:37 +0100 Subject: [PATCH] [TASK] Drop phpstan ignore in ScssParserTest --- Tests/Functional/Parser/ScssParserTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Functional/Parser/ScssParserTest.php b/Tests/Functional/Parser/ScssParserTest.php index 243e13a47..4d21cf9f8 100644 --- a/Tests/Functional/Parser/ScssParserTest.php +++ b/Tests/Functional/Parser/ScssParserTest.php @@ -114,7 +114,7 @@ protected function buildRequest(string $typoScriptString = ''): ServerRequest $request = new ServerRequest(); $lineStream = (new LossyTokenizer())->tokenize($typoScriptString); $typoScriptAst = (new AstBuilder(new NoopEventDispatcher()))->build($lineStream, new RootNode()); - /** @phpstan-ignore-next-line */ + $typoScriptAttribute = new FrontendTypoScript(new RootNode(), [], [], []); $typoScriptAttribute->setSetupTree($typoScriptAst); $typoScriptAttribute->setSetupArray($typoScriptAst->toArray());