From 829d3d9745bcc257ae4b2e7a37663e7984c839a6 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 15 Jan 2024 11:37:17 +0100 Subject: [PATCH] Zend.Debug.CodeAnalyzer: soft deprecate the sniff See 58. This commit _soft_ deprecates the sniffs with a `@deprecated` annotation. This will get a mention in the changelog. Hard deprecation will follow in a future 3.x minor as per 188. --- src/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php b/src/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php index ffbab028b4..7bf1f0ad0a 100644 --- a/src/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php +++ b/src/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php @@ -6,6 +6,8 @@ * @author Greg Sherwood * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence + * + * @deprecated 3.9.0 */ namespace PHP_CodeSniffer\Standards\Zend\Sniffs\Debug;