Skip to content

Commit 3864921

Browse files
test(psalm): Avoid false positive for Symfony method
1 parent 5427cc7 commit 3864921

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

tools/coding-standards/psalm/psalm.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,17 @@
1313
<directory name="../vendor" />
1414
</ignoreFiles>
1515
</projectFiles>
16-
16+
<issueHandlers>
17+
<UndefinedInterfaceMethod>
18+
<errorLevel type="suppress">
19+
<referencedMethod name="Symfony\Component\Config\Definition\Builder\NodeParentInterface::integerNode"/>
20+
<referencedMethod name="Symfony\Component\Config\Definition\Builder\NodeParentInterface::scalarNode"/>
21+
</errorLevel>
22+
</UndefinedInterfaceMethod>
23+
<UndefinedMethod>
24+
<errorLevel type="suppress">
25+
<referencedMethod name="Symfony\Component\Config\Definition\Builder\NodeDefinition::children"/>
26+
</errorLevel>
27+
</UndefinedMethod>
28+
</issueHandlers>
1729
</psalm>

0 commit comments

Comments
 (0)