[ticket/12726] Update error message

PHPBB3-12726
This commit is contained in:
Tristan Darricau 2014-06-22 20:54:52 +02:00
parent 2ff9064ffb
commit 147ae8374c

View file

@ -172,7 +172,7 @@ class phpbb_Sniffs_Namespaces_UnusedUseSniff implements PHP_CodeSniffer_Sniff
if (!$ok) if (!$ok)
{ {
$error = 'There must not be unused USE statement.'; $error = 'There must not be unused USE statements.';
$phpcsFile->addError($error, $stackPtr, 'Unused'); $phpcsFile->addError($error, $stackPtr, 'Unused');
} }
} }