1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00

Ignore internal null/false for unit test code

This commit is contained in:
robchett 2023-10-06 14:06:36 +01:00
parent c341d6f80c
commit 55124181e7

View File

@ -27,6 +27,8 @@ class TestConfig extends Config
$this->use_docblock_types = true; $this->use_docblock_types = true;
$this->level = 1; $this->level = 1;
$this->cache_directory = null; $this->cache_directory = null;
$this->ignore_internal_falsable_issues = true;
$this->ignore_internal_nullable_issues = true;
$this->base_dir = getcwd() . DIRECTORY_SEPARATOR; $this->base_dir = getcwd() . DIRECTORY_SEPARATOR;