diff --git a/CHANGELOG.md b/CHANGELOG.md index b1eb2fb..72faecc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ 2022-10-27 +* Improved Larastan config * Improved CI ## [2.2.1](https://github.com/Okipa/laravel-supervisor-downtime-notifier/compare/2.2.0...2.2.1) diff --git a/phpstan.neon.dist b/phpstan.neon.dist index df1f256..7c9c740 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -4,17 +4,20 @@ includes: parameters: paths: - - config - - src - - tests + - config/ + - src/ + - tests/ # The level 9 is the highest level level: 5 - ignoreErrors: - - '#Parameter \#2 \$needles of static method Illuminate\\Support\\Str::contains\(\)#' + databaseMigrationsPath: + - tests/database/migrations/ - excludePaths: - #- ./*/*/FileToBeExcluded.php - - #checkMissingIterableValueType: true +# ignoreErrors: +# - '#PHPDoc tag @var#' +# +# excludePaths: +# - ./*/*/FileToBeExcluded.php +# +# checkMissingIterableValueType: false