I currently have all errors enabled for my site:
error_reporting(E_ALL);
However, in PHP 8.1, some functions are now deprecated:
PHP Notice: Function date_sunset() is deprecated in index.php on line 14
Due to current requirements, I am unable to update the line to the non-deprecated alternative.
Is there a way to disable error reporting of deprecations just for this single line?