Skip to content

Commit fdf74a3

Browse files
committed
Update config.dist.php
1 parent 0a2d972 commit fdf74a3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

config.dist.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@
4141
'encoding' => [
4242
'gzcompress' => [
4343
'view' => static fn (string $value): ?string => @gzuncompress($value) !== false ? gzuncompress($value) : null,
44-
'save' => static fn (string $value) => gzcompress($value),
44+
'save' => static fn (string $value): string => gzcompress($value),
4545
],
4646
'gzencode' => [
4747
'view' => static fn (string $value): ?string => @gzdecode($value) !== false ? gzdecode($value) : null,
48-
'save' => static fn (string $value) => gzencode($value),
48+
'save' => static fn (string $value): string => gzencode($value),
4949
],
5050
'gzdeflate' => [
5151
'view' => static fn (string $value): ?string => @gzinflate($value) !== false ? gzinflate($value) : null,
52-
'save' => static fn (string $value) => gzdeflate($value),
52+
'save' => static fn (string $value): string => gzdeflate($value),
5353
],
5454
],
5555
// Formatting functions, it runs after decoding

0 commit comments

Comments
 (0)