From 797da7faa4abe933ccd811e4a0c426aa488e4e21 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Mon, 19 Jul 2021 09:09:27 +0100 Subject: [PATCH] Fix PHP 8.1 deprecation --- src/Runner.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Runner.php b/src/Runner.php index f6ee5bc391..50c9d8e5e5 100644 --- a/src/Runner.php +++ b/src/Runner.php @@ -289,10 +289,6 @@ public function init() define('PHP_CODESNIFFER_CBF', false); } - // Ensure this option is enabled or else line endings will not always - // be detected properly for files created on a Mac with the /r line ending. - ini_set('auto_detect_line_endings', true); - // Disable the PCRE JIT as this caused issues with parallel running. ini_set('pcre.jit', false);