1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/docs/contributing/philosophy.md
2021-02-28 14:02:18 -05:00

2.9 KiB
Raw Blame History

The Governing Philosophy for Psalm development

This is a living document!

Psalm is a tool for PHP written in PHP

  • PHP is fast enough for most use-cases
  • Writing the tool in PHP guarantees that PHP community members can contribute to it without too much difficulty

Drawbacks

  • Psalm is slow in very large monorepos (over 5 million lines of checked-in code).
  • Psalms language server is more limited in what it can provide than comparable compiled-language tools. For example, it's infeasible to find/change all occurences of a symbol, in all files that use it, as you type.

Comparison to other languages & tools

Many languages have typecheckers/compilers written in the same language. Popular examples include Go, Rust, and TypeScript.

Python is a special case where the semi-official typechecker MyPy can also compile to a C Python extension, which runs 4x faster than the interpreted equivalent.

Some interpreted languages have unofficial typecheckers written in faster compiled languages:

  • PHP
    • NoVerify open-source tool written in Go. Runs much faster than Psalm (but does not support many modern PHP features)
    • PhpStorm closed-source tool written in Java
  • Ruby
    • Sorbet - open-source tool written in C
  • Python
    • Pyre - open-source tool written in OCaml
  • Hack - the typechecker uses OCaml and Rust

Psalm's primary purpose is finding bugs

Psalm does a lot, but the main thing people use it for is to find potential bugs in their code.

Psalms primary execution environment is the command line

Psalm is mostly run on PHP code that parses a lint check (php -l). Psalm does not replace that check for verifying PHP syntax.

Since most of the time Psalm is used on syntatically-correct code it should use a parser built for that purpose, and nikic/php-parser is the best candidate.

Annotations are better than type-providing plugins

Psalm offers a plugin API that allows you to tell it what about your program's property types, return types and parameter types.

Psalm aims to operate in a space with other static analysis tools. The more users rely on plugins, the less chance those other tools have to understand the user's intent.

So wherever possible Psalm should encourage developers to use annotations rather than type-providing plugins. This was a driving force in the adoption of Conditional Types which allowed Psalm to replace some of its own internal type-providing plugins.

In certain circumstances docblocks > PHP 8 attributes

For information that's just designed to be consumed by static analysis tools, docblocks are a better home than PHP 8 attributes.

A rationale is provided in this article.