0

目前正在运行的诗篇给了我:

Psalm 能够推断出 94.8665% 的代码库的类型

如何在无法推断类型的地方进行调试?我想要 100% 的类型覆盖率。

这是我的psalm.xml.dist配置:

<?xml version="1.0"?>
<psalm
    errorLevel="4"
    resolveFromConfigFile="true"
    totallyTyped="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"
>
    <projectFiles>
        <directory name="src" />
        <ignoreFiles>
            <file name="src/Kernel.php"/>
            <directory name="vendor" />
        </ignoreFiles>
    </projectFiles>
</psalm>

谢谢您的支持。

4

1 回答 1

1

看起来这很“容易”。只需将errorLevel下降到 1 并解决所有问题。总共超过500个。

一旦我到达errorLevel=1我的代码库,就已经 100% 推断出来了。

获得的徽章:

  • 类型狂人
  • 完全打字
于 2020-09-09T17:16:43.273 回答