/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.4.39
psalm.xml
56 строк
2 KB
Nicolas Grekas
Add phpstan job next to the existing psalm one
30 апр 2026, 12:20
30 апр 2026, 12:20
d66ae83
Код
Авторство
О чём код?
<?xml version="1.0"?> <psalm errorLevel="5" resolveFromConfigFile="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://getpsalm.org/schema/config" xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd" cacheDirectory="./.github/sa-tools/psalm-cache/" errorBaseline=".github/sa-tools/psalm.baseline.xml" findUnusedBaselineEntry="false" findUnusedCode="false" findUnusedIssueHandlerSuppression="false" ensureOverrideAttribute="false" > <projectFiles> <directory name="src" /> <ignoreFiles> <directory name="src/Symfony/*/*/Tests" /> <directory name="src/Symfony/*/*/*/Tests" /> <directory name="src/Symfony/*/*/*/*/Tests" /> <directory name="src/Symfony/Component/Intl/Resources/emoji/" /> <directory name="vendor" /> </ignoreFiles> </projectFiles> <issueHandlers> <UndefinedClass> <errorLevel type="suppress"> <!-- These classes have been added in PHP 8.4 --> <referencedClass name="BcMath\Number"/> </errorLevel> </UndefinedClass> <UnusedClass> <errorLevel type="suppress"> <!-- Because we don't analyze our tests or fixtures, we will get a lot of false positives regarding unused classes. --> <directory name="src/Symfony" /> </errorLevel> </UnusedClass> <UnusedConstructor> <errorLevel type="suppress"> <!-- We use private constructors to avoid instantiation. This kind of error is bogus in most cases. --> <directory name="src/Symfony" /> </errorLevel> </UnusedConstructor> </issueHandlers> <forbiddenFunctions> <function name="empty"/> </forbiddenFunctions> </psalm>