Skip to content
Snippets Groups Projects
Commit 18b4c0c8 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Psalm: Suppress TooManyArguments

parent bd6dafc6
No related branches found
No related tags found
No related merge requests found
......@@ -141,6 +141,7 @@ class FileLoggingHandler implements LoggingHandlerInterface
FILE_APPEND,
);
} else {
/** @psalm-suppress TooManyArguments */
$this->fileSystem->appendToFile(
$this->logFile,
str_replace($formats, $replacements, $string) . \PHP_EOL,
......
......@@ -210,6 +210,8 @@ class MDQ extends MetaDataStorageSource
$file = new File($cacheFileName);
Logger::debug(sprintf('%s: Writing cache [%s] => [%s]', __CLASS__, $entityId, strval($file)));
/** @psalm-suppress TooManyArguments */
$this->fileSystem->appendToFile(strval($file), serialize($data), true);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment