File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
89
89
-- Thanks to Juliette Reinders Folmer for the patch
90
90
- Fixed bug #3362 : Generic.WhiteSpace.ScopeIndent false positive for arrow functions inside arrays
91
91
- Fixed bug #3384 : Squiz.Commenting.FileComment.SpacingAfterComment false positive on empty file
92
+ - Fixed bug #3394 : Fix PHP 8.1 auto_detect_line_endings deprecation notice
92
93
- Fixed bug #3400 : PHP 8.1: prevent deprecation notices about missing return types
93
94
-- Thanks to Juliette Reinders Folmer for the patch
94
95
</notes>
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ public function init()
291
291
292
292
// Ensure this option is enabled or else line endings will not always
293
293
// be detected properly for files created on a Mac with the /r line ending.
294
- ini_set ('auto_detect_line_endings ' , true );
294
+ @ ini_set ('auto_detect_line_endings ' , true );
295
295
296
296
// Disable the PCRE JIT as this caused issues with parallel running.
297
297
ini_set ('pcre.jit ' , false );
You can’t perform that action at this time.
0 commit comments