Skip to content

Commit

Permalink
Psalm and phpstan configs
Browse files Browse the repository at this point in the history
Signed-off-by: snipe <[email protected]>
  • Loading branch information
snipe committed Feb 7, 2023
1 parent 219d92d commit 32be88d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
22 changes: 22 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -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 changes: 18 additions & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 32be88d

Please sign in to comment.