1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-13 20:28:44 +01:00

[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)
{
$error = 'There must not be unused USE statement.';
$error = 'There must not be unused USE statements.';
$phpcsFile->addError($error, $stackPtr, 'Unused');
}
}