Psalm and phpstan configs

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-02-07 11:00:59 -08:00
parent 219d92dcfb
commit 32be88d796
2 changed files with 40 additions and 0 deletions

22
phpstan.neon Normal file
View file

@ -0,0 +1,22 @@
parameters:
paths:
- app
- resources/views
- resources/lang
- database/migrations
- config
level: 4
ignoreErrors:
- '#Class, interface or enum named #'
- '#Call to an undefined static method App\\Models\\.*::where.*\(\)#'
- '#Call to an undefined static method App\\Models\\.*::firstOr.*\(\)#'
- '#Call to an undefined static method App\\Models\\.*::find.*\(\)#'
- '#Call to an undefined static method App\\Models\\.*::get.*\(\)#'
- '#Call to an undefined static method App\\Models\\.*::has.*\(\)#'
- '#Call to static method info\(\) on an unknown class Log#'
- '#Call to static method debug\(\) on an unknown class Log#'
- '#Call to static method getSchemaBuilder\(\) on an unknown class DB#'
- '#Call to static method call\(\) on an unknown class Artisan.#'

18
psalm.xml Normal file
View file

@ -0,0 +1,18 @@
<?xml version="1.0"?>
<psalm
errorLevel="7"
resolveFromConfigFile="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"
findUnusedBaselineEntry="true"
>
<projectFiles>
<directory name="app" />
<directory name="database/factories" />
<directory name="database/seeders" />
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
</projectFiles>
</psalm>