From cbe2d115fb664eed5921f8c151bcdeb52f8d4922 Mon Sep 17 00:00:00 2001 From: Dominik Kohler Date: Sat, 25 Sep 2021 11:12:18 +0200 Subject: [PATCH] Ignore phpstan error which is triggered due wrong docblock in tcpdf dependency. --- phpstan.neon.dist | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpstan.neon.dist b/phpstan.neon.dist index 6e2cadb8..3d10c213 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -2,3 +2,6 @@ parameters: level: 5 paths: - src/ + ignoreErrors: + - '#Parameter \#1 \$h of method TCPDF::setCellHeightRatio\(\) expects int, float given\.#' + reportUnmatchedIgnoredErrors: false \ No newline at end of file