-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch phan for phpstan (see chillerlan/php-qrcode#277)
- Loading branch information
1 parent
3e6f15b
commit 0f69428
Showing
8 changed files
with
50 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
/.build export-ignore | ||
/.github export-ignore | ||
/.idea export-ignore | ||
/.phan export-ignore | ||
/.phpdoc export-ignore | ||
/docs export-ignore | ||
/examples export-ignore | ||
/tests export-ignore | ||
/.editorconfig export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.readthedocs.yml export-ignore | ||
/composer.lock export-ignore | ||
/phpcs.xml.dist export-ignore | ||
/phpdoc.xml.dist export-ignore | ||
/phpmd.xml.dist export-ignore | ||
/phpunit.xml.dist export-ignore | ||
/.build export-ignore | ||
/.github export-ignore | ||
/.idea export-ignore | ||
/.phan export-ignore | ||
/.phpdoc export-ignore | ||
/docs export-ignore | ||
/examples export-ignore | ||
/tests export-ignore | ||
/.editorconfig export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.readthedocs.yml export-ignore | ||
/composer.lock export-ignore | ||
/phpcs.xml.dist export-ignore | ||
/phpdoc.xml.dist export-ignore | ||
/phpmd.xml.dist export-ignore | ||
/phpunit.xml.dist export-ignore | ||
/phpstan.dist.neon export-ignore | ||
/phpstan-baseline.neon export-ignore | ||
|
||
*.php diff=php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ phpcs.xml | |
phpdoc.xml | ||
phpmd.xml | ||
phpunit.xml | ||
phpstan.neon |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
parameters: | ||
ignoreErrors: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# https://phpstan.org/config-reference | ||
|
||
parameters: | ||
level: 9 | ||
tmpDir: .build/phpstan-cache | ||
paths: | ||
- examples | ||
- src | ||
- tests | ||
|
||
treatPhpDocTypesAsCertain: false | ||
|
||
includes: | ||
- phpstan-baseline.neon | ||
- vendor/phpstan/phpstan/conf/bleedingEdge.neon | ||
- vendor/phpstan/phpstan-deprecation-rules/rules.neon | ||
# - vendor/chillerlan/php-settings-container/rules-magic-access.neon |