mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-14 02:36:08 +01:00
Daniel Siepmann
9f24518a0b
* Support TYPO3 v12.0 All dependencies are compatible now. We can update to support v12.0. This commit will shift TYPO3 support from 10 and 11 to 11 and 12. See Changelog entry. Update dev dependencies to our latest best practice. Auto migrate code base to follow CGL and use PHP 7.4.
20 lines
1 KiB
Text
20 lines
1 KiB
Text
includes:
|
|
- phpstan-baseline.neon
|
|
parameters:
|
|
level: max
|
|
paths:
|
|
- Classes
|
|
- Tests
|
|
checkMissingIterableValueType: false
|
|
reportUnmatchedIgnoredErrors: false
|
|
ignoreErrors:
|
|
# Ignore error for TYPO3 11 and TYPO3 12
|
|
- '#Cannot call method fetch\(\) on Doctrine\\DBAL\\Result\|int\.#'
|
|
- '#Cannot call method fetchAll\(\) on Doctrine\\DBAL\\Result\|int\.#'
|
|
- '#Cannot call method fetchColumn\(\) on Doctrine\\DBAL\\Result\|int\.#'
|
|
- '#Cannot call method fetchOne\(\) on Doctrine\\DBAL\\Result\|int\.#'
|
|
- "#^Parameter \\#[0-9] \\.\\.\\.\\$predicates of method TYPO3\\\\CMS\\\\Core\\\\Database\\\\Query\\\\QueryBuilder\\:\\:where\\(\\) expects array\\<int, mixed\\>\\|Doctrine\\\\DBAL\\\\Query\\\\Expression\\\\CompositeExpression, string given\\.$#"
|
|
- '#^Variable \$_EXTKEY might not be defined\.$#'
|
|
- "#^Cannot access offset '.*' on mixed.$#"
|
|
- "#^Parameter .* expects .*, mixed given.$#"
|
|
- "#^Cannot call method .* on mixed.$#"
|