1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/docs/README.md

68 lines
2.9 KiB
Markdown
Raw Normal View History

# About Psalm
2019-03-20 03:39:14 +01:00
Psalm is a static analysis tool that attempts to dig into your program and find as many type-related bugs as possible.
It has a few features that go further than other similar tools:
- **Mixed type warnings**<br />
If Psalm cannot infer a type for an expression then it uses a `mixed` placeholder. Any `mixed` type is a sign of an insufficiently-documented codebase. You can configure Psalm warn when encountering `mixed` types by adding *`totallyTyped="true"`* attribute to your XML config file.
- **Logic checks**<br />
Psalm keeps track of logical assertions made about your code, so `if ($a && $a) {}` and `if ($a && !$a) {}` are both treated as issues. Psalm also keeps track of logical assertions made in prior code paths, preventing issues like `if ($a) {} elseif ($a) {}`.
- **Property initialisation checks**<br />
Psalm checks that all properties of a given object have values after the constructor is called.
- **Support for complicated array shapes**<br />
2019-03-20 03:40:27 +01:00
Psalm has support for [object-like arrays](docblock_type_syntax.md#object-like-arrays), allowing you to specify types for all keys of an array if you so wish.
2019-03-20 03:39:14 +01:00
Psalm also has a few features to make it perform as well as possible on large codebases:
- **Multi-threaded mode**<br />
Using the `--threads=[X]` command line option will run Psalm's analysis stage on [X] threads. Useful for large codebases, it has a massive impact on performance.
- **Incremental checks**<br />
When using the `--diff` command line option, Psalm will only analyse files that have changed *and* files that reference them.
## Example output
```php
// somefile.php
<?php
$a = ['foo', 'bar'];
echo implode($a, ' ');
```
```bash
> ./vendor/bin/psalm somefile.php
ERROR: InvalidArgument - somefile.php:3:14 - Argument 1 of implode expects `string`, `array` provided
```
## Inspirations
There are two main inspirations for Psalm:
- Etsy's [Phan](https://github.com/etsy/phan), which uses nikic's [`php-ast`](https://github.com/nikic/php-ast) extension to create an abstract syntax tree
- Facebook's [Hack](http://hacklang.org/), a PHP-like language that supports many advanced typing features natively, so docblocks aren't necessary.
2019-03-20 16:49:17 +01:00
## Index
- Running Psalm:
- [Installation](installation.md)
- [Configuration](configuration.md)
- [Plugins](plugins.md)
2019-04-14 21:13:47 +02:00
- [How Psalm represents types](plugins_type_system.md)
2019-03-20 16:49:17 +01:00
- [Command line usage](running_psalm.md)
- [IDE support](language_server.md)
- Handling errors:
- [Dealing with code issues](dealing_with_code_issues.md)
- [Issue Types](issues.md)
- [Checking non-PHP files](checking_non_php_files.md)
- Annotating code:
- [Typing in Psalm](typing_in_psalm.md)
- [Docblock Type Syntax](docblock_type_syntax.md)
- [Supported Annotations](supported_annotations.md)
- [Template Annotations](templated_annotations.md)
- [Fixing code](fixing_code.md)