File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments