Merge pull request #53458 from nextcloud/fix-putcsv-default

fix(profiler): set default values for fputcsv arguments to avoid depreciation warning
This commit is contained in:
Thomas Citharel 2025-08-27 20:29:16 +02:00 committed by GitHub
commit 4111bdbbcf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -161,7 +161,7 @@ class FileProfilerStorage {
$profile->getTime(),
$profile->getParentToken(),
$profile->getStatusCode(),
]);
], escape: '');
fclose($file);
}