We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8472099 commit cc6fcf7Copy full SHA for cc6fcf7
.gitignore
@@ -10,5 +10,6 @@ nbproject/
10
composer.phar
11
phpunit.xml
12
.php_cs.cache
13
+.psalm.cache/
14
/build/*
-!/build/.gitkeep
15
+!/build/.gitkeep
Makefile
@@ -63,6 +63,7 @@ clean:
63
rm -rf build/logs
64
rm -rf vendor
65
rm -f .php_cs.cache
66
+ rm -rf .psalm.cache
67
68
# Output error if not initialised.
69
check-init:
psalm.xml
@@ -5,6 +5,7 @@
5
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
6
xmlns:xi="http://www.w3.org/2001/XInclude"
7
errorLevel="2"
8
+ cacheDirectory=".psalm.cache"
9
reportMixedIssues="false"
resolveFromConfigFile="true"
disableSuppressAll="true"
0 commit comments