Skip to content

Commit e5eae5c

Browse files
TASK: Fix some minor issues (#227)
1 parent 5fcd191 commit e5eae5c

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.gitattributes

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
/Build/ export-ignore
22
/Tests/ export-ignore
3-
/.gitattributes export-ignore
4-
/.gitignore export-ignore
5-
/.travis.yml export-ignore
6-
/phpstan.neon export-ignore
7-
/.coveralls.yml export-ignore
8-
/.editorconfig export-ignore
9-
/.php_cs.dist export-ignore
3+
phpstan.neon export-ignore
4+
ecs.php export-ignore
5+
phpstan-baseline.neon export-ignore
6+
rector.php export-ignore
7+
.github export-ignore
8+
.editorconfig export-ignore
9+
.gitattributes export-ignore
10+
.github export-ignore
11+
.gitignore export-ignore
12+
LICENSE export-ignore

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
'version' => '5.0.6',
1111
'constraints' => [
1212
'depends' => [
13-
'typo3' => '10.4.2-12.5.99',
13+
'typo3' => '10.4.2-12.4.99',
1414
],
1515
'conflicts' => [],
1616
'suggests' => [],

phpstan-baseline.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ parameters:
2626
path: Classes/Form/FormDataProvider/RichtextEncoreConfiguration.php
2727

2828
-
29-
message: "#^Strict comparison using \\!\\=\\= between '' and '1' will always evaluate to true\\.$#"
29+
message: "#^Strict comparison using \\!\\=\\= between '1' and '' will always evaluate to true\\.$#"
3030
count: 1
3131
path: Classes/Middleware/AssetsMiddleware.php
3232

phpstan.neon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ parameters:
88
- Tests
99

1010
inferPrivatePropertyTypeFromConstructor: true
11-
checkMissingIterableValueType: false
12-
checkGenericClassInNonGenericObjectType: false
11+
ignoreErrors:
12+
- identifier: missingType.iterableValue
1313
typo3:
1414
requestGetAttributeMapping:
1515
_links: array

0 commit comments

Comments
 (0)