diff options
author | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
---|---|---|
committer | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
commit | bf6655a534a6775d30cafa67bd801276bda1d98d (patch) | |
tree | c6381e3f6c81c33eab72508f410b165ba05f7e9c /vendor/doctrine/orm/phpstan-dbal3.neon | |
parent | 94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff) | |
download | AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip |
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/doctrine/orm/phpstan-dbal3.neon')
-rw-r--r-- | vendor/doctrine/orm/phpstan-dbal3.neon | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/phpstan-dbal3.neon b/vendor/doctrine/orm/phpstan-dbal3.neon new file mode 100644 index 0000000..b9ef942 --- /dev/null +++ b/vendor/doctrine/orm/phpstan-dbal3.neon | |||
@@ -0,0 +1,29 @@ | |||
1 | includes: | ||
2 | - phpstan-baseline.neon | ||
3 | - phpstan-params.neon | ||
4 | |||
5 | parameters: | ||
6 | ignoreErrors: | ||
7 | # Symfony cache supports passing a key prefix to the clear method. | ||
8 | - '/^Method Psr\\Cache\\CacheItemPoolInterface\:\:clear\(\) invoked with 1 parameter, 0 required\.$/' | ||
9 | |||
10 | # We can be certain that those values are not matched. | ||
11 | - | ||
12 | message: '~^Match expression does not handle remaining values:~' | ||
13 | path: src/Persisters/Entity/BasicEntityPersister.php | ||
14 | |||
15 | # DBAL 4 compatibility | ||
16 | - | ||
17 | message: '~^Method Doctrine\\ORM\\Query\\AST\\Functions\\TrimFunction::getTrimMode\(\) never returns .* so it can be removed from the return type\.$~' | ||
18 | path: src/Query/AST/Functions/TrimFunction.php | ||
19 | - | ||
20 | message: '~^Method Doctrine\\ORM\\Persisters\\Entity\\BasicEntityPersister\:\:getArrayBindingType\(\) never returns .* so it can be removed from the return type\.$~' | ||
21 | path: src/Persisters/Entity/BasicEntityPersister.php | ||
22 | |||
23 | - '~^Class Doctrine\\DBAL\\Platforms\\SQLitePlatform not found\.$~' | ||
24 | |||
25 | # To be removed in 4.0 | ||
26 | - | ||
27 | message: '#Negated boolean expression is always false\.#' | ||
28 | paths: | ||
29 | - src/Mapping/Driver/AttributeDriver.php | ||