Skip to content

Commit 6e69433

Browse files
committed
fix(profiler): set default values for fputcsv arguments to avoid depreciation warning
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
1 parent b49065f commit 6e69433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/Profiler/FileProfilerStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public function write(IProfile $profile): bool {
161161
$profile->getTime(),
162162
$profile->getParentToken(),
163163
$profile->getStatusCode(),
164-
]);
164+
], ',', "\"", '');
165165
fclose($file);
166166
}
167167

0 commit comments

Comments
 (0)