-
Notifications
You must be signed in to change notification settings - Fork 5
Added phpstan configuration #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
0d1b5d6
[Composer] Added phpstan/* dependencies
adamwojs 445f8ea
[PHPStan] Configured phpstan and initialized baseline
adamwojs b2f85f0
[GHA] Added PHPStan analysis step to CI workflow
adamwojs a42eb3d
[GHA] Bump PHP version for code style check and tests
adamwojs 033882c
[PHPStan] Difference baseline per PHP version
adamwojs 0af3e9e
Apply suggestions from code review
adamwojs f52befc
Update .github/workflows/ci.yaml
adamwojs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,19 @@ | ||
| <?php | ||
|
|
||
| /** | ||
| * @copyright Copyright (C) Ibexa AS. All rights reserved. | ||
| * @license For full copyright and license information view LICENSE file distributed with this source code. | ||
| */ | ||
| declare(strict_types=1); | ||
|
|
||
| $includes = []; | ||
| if (PHP_VERSION_ID >= 80000) { | ||
| $includes[] = __DIR__ . '/ignore-gte-php8.0-errors.neon'; | ||
| } else { | ||
| $includes[] = __DIR__ . '/ignore-php7.4-errors.neon'; | ||
| } | ||
|
|
||
| $config = []; | ||
| $config['includes'] = $includes; | ||
|
|
||
| return $config; |
This file contains hidden or 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,23 @@ | ||
| parameters: | ||
| ignoreErrors: | ||
| - | ||
| message: '#^Parameter \#2 \$string of function explode expects string, string\|null given\.$#' | ||
| identifier: argument.type | ||
| count: 1 | ||
| path: src/lib/EventSubscriber/XLocationIdResponseSubscriber.php | ||
| - | ||
| message: '#^Parameter \#1 \.\.\.\$arrays of function array_merge expects array, list\<string\>\|false given\.$#' | ||
| identifier: argument.type | ||
| count: 1 | ||
| path: src/lib/Handler/TagHandler.php | ||
| - | ||
| message: '#^Parameter \#2 \.\.\.\$arrays of function array_merge expects array, list\<string\>\|false given\.$#' | ||
| identifier: argument.type | ||
| count: 1 | ||
| path: src/lib/Handler/TagHandler.php | ||
|
|
||
| - | ||
| message: '#^Parameter \#3 \$length of function substr expects int\|null, int\|false given\.$#' | ||
| identifier: argument.type | ||
| count: 1 | ||
| path: src/lib/Handler/TagHandler.php |
This file contains hidden or 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,23 @@ | ||
| parameters: | ||
| ignoreErrors: | ||
| - | ||
| message: '#^Parameter \#2 \$str of function explode expects string, string\|null given\.$#' | ||
| identifier: argument.type | ||
| count: 1 | ||
| path: src/lib/EventSubscriber/XLocationIdResponseSubscriber.php | ||
| - | ||
| message: '#^Parameter \#1 \$arr1 of function array_merge expects array, list\<string\>\|false given\.$#' | ||
| identifier: argument.type | ||
| count: 1 | ||
| path: src/lib/Handler/TagHandler.php | ||
| - | ||
| message: '#^Parameter \#2 \.\.\.\$args of function array_merge expects array, list\<string\>\|false given\.$#' | ||
| identifier: argument.type | ||
| count: 1 | ||
| path: src/lib/Handler/TagHandler.php | ||
|
|
||
| - | ||
| message: '#^Parameter \#3 \$length of function substr expects int, int\<0, max\>\|false given\.$#' | ||
| identifier: argument.type | ||
| count: 1 | ||
| path: src/lib/Handler/TagHandler.php |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.