Skip to content

Commit 05e428f

Browse files
committed
chore(config): Update editorconfig and phpstan baseline
- Update indent_size and end_of_line in .editorconfig - Set insert_final_newline to false in .editorconfig - Update indent_size and insert_final_newline for *.vue, *.js, *.scss in .editorconfig - Update paths for ignoreErrors in phpstan-baseline.neon - Add path src/Collectors/RequestHeaderCollector.php to ignoreErrors in phpstan-baseline.neon - Adjust ignoreErrors in phpstan.neon - Update xsi:noNamespaceSchemaLocation in phpunit.xml.dist
1 parent 8db8040 commit 05e428f

File tree

4 files changed

+26
-19
lines changed

4 files changed

+26
-19
lines changed

.editorconfig

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
root = true
22

33
[*]
4-
charset = utf-8
5-
end_of_line = lf
6-
indent_size = 4
74
indent_style = space
8-
insert_final_newline = true
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
98
trim_trailing_whitespace = true
9+
insert_final_newline = false
10+
11+
[*.{vue,js,scss}]
12+
indent_size = 2
13+
insert_final_newline = true
1014

1115
[*.md]
1216
trim_trailing_whitespace = false
1317

1418
[*.{yml,yaml,xml,xml.dist}]
15-
indent_size = 2
19+
indent_size = 2

phpstan-baseline.neon

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,31 @@
11
parameters:
22
ignoreErrors:
33
-
4-
message: "#^Property Guanguans\\\\LaravelExceptionNotify\\\\Collectors\\\\ApplicationCollector\\:\\:\\$container \\(Illuminate\\\\Foundation\\\\Application\\|Laravel\\\\Lumen\\\\Application\\) does not accept Illuminate\\\\Container\\\\Container\\.$#"
4+
message: "#^Property Guanguans\\\\LaravelExceptionNotify\\\\Collectors\\\\ApplicationCollector\\:\\:\\$container \\(Illuminate\\\\Foundation\\\\Application\\) does not accept Illuminate\\\\Container\\\\Container\\.$#"
55
count: 1
66
path: src/Collectors/ApplicationCollector.php
77

88
-
9-
message: "#^Access to protected property Guanguans\\\\LaravelExceptionNotify\\\\Macros\\\\CollectionMacro\\:\\:\\$items\\.$#"
9+
message: "#^Call to an undefined method Illuminate\\\\Support\\\\Stringable\\:\\:ucwords\\(\\)\\.$#"
1010
count: 1
11-
path: src/Macros/CollectionMacro.php
11+
path: src/Collectors/Collector.php
12+
13+
-
14+
message: "#^Call to an undefined method Illuminate\\\\Http\\\\Request\\:\\:headers\\(\\)\\.$#"
15+
count: 1
16+
path: src/Collectors/RequestHeaderCollector.php
1217

1318
-
1419
message: "#^Access to protected property Guanguans\\\\LaravelExceptionNotify\\\\Macros\\\\StringableMacro\\:\\:\\$value\\.$#"
1520
count: 2
1621
path: src/Macros/StringableMacro.php
1722

1823
-
19-
message: "#^Unsafe usage of new static\\(\\)\\.$#"
20-
count: 2
24+
message: "#^Call to an undefined static method Illuminate\\\\Support\\\\Str\\:\\:lcfirst\\(\\)\\.$#"
25+
count: 1
26+
path: src/Macros/StringableMacro.php
27+
28+
-
29+
message: "#^Call to an undefined static method Illuminate\\\\Support\\\\Str\\:\\:ucwords\\(\\)\\.$#"
30+
count: 1
2131
path: src/Macros/StringableMacro.php

phpstan.neon

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,4 @@ parameters:
3030
# switchConditionsMatchingType: false
3131
# noVariableVariables: false
3232
ignoreErrors:
33-
- "#^Call to an undefined method#"
34-
- "#^Call to an undefined static method#"
33+
- "#^Unsafe usage of new static\\(\\)\\.$#"

phpunit.xml.dist

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
backupGlobals="false"
43
backupStaticAttributes="false"
54
bootstrap="vendor/autoload.php"
65
cacheResultFile="build/phpunit/.phpunit.result.cache"
76
colors="true"
8-
convertErrorsToExceptions="true"
9-
convertNoticesToExceptions="true"
10-
convertWarningsToExceptions="true"
11-
processIsolation="false"
12-
stopOnFailure="false"
137
verbose="true"
148
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
9+
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
1610
>
1711
<!--printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer"-->
1812
<coverage>

0 commit comments

Comments
 (0)