1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-16 05:34:01 +02:00

[ticket/17510] Fix Code Sniffer deprecations

PHPBB-17510
This commit is contained in:
Matt Friedman
2025-05-13 11:25:15 -07:00
parent d8dc1204c2
commit 7268859226
7 changed files with 24 additions and 14 deletions

View File

@@ -11,13 +11,15 @@
*
*/
namespace phpbb\Sniffs\Namespaces;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
/**
* Checks that each use statement is used.
*/
class phpbb_Sniffs_Namespaces_UnusedUseSniff implements Sniff
class UnusedUseSniff implements Sniff
{
const FIND = [
T_NS_SEPARATOR,