Printf Inventory

List of all printf(), sprintf(), etc. formats strings mentioned in the code..

ValueCountFile:Line
PHP_EOL . 'The error originated in the %s sniff on line %s.'1
  • /src/Runner.php
'Error opening file; file no longer exists or you do not have access to read the file'1
  • /src/Files/LocalFile.php
'You must use "/**" style comments for a function comment'1
  • /src/Standards/PEAR/Sniffs/Commenting/FunctionCommentSniff.php
'Missing doc comment for function %s()'1
  • /src/Standards/PEAR/Sniffs/Commenting/FunctionCommentSniff.php
'Missing doc comment for %s %s'1
  • /src/Standards/PEAR/Sniffs/Commenting/ClassCommentSniff.php
'You must use "/**" style comments for a %s comment'1
  • /src/Standards/PEAR/Sniffs/Commenting/ClassCommentSniff.php
'Inline IF statements are not allowed'1
  • /src/Standards/Squiz/Sniffs/PHP/DisallowInlineIfSniff.php
'You must use "/**" style comments for a class comment'1
  • /src/Standards/Squiz/Sniffs/Commenting/ClassCommentSniff.php
'Missing doc comment for class %s'1
  • /src/Standards/Squiz/Sniffs/Commenting/ClassCommentSniff.php
'You must use "/**" style comments for a file comment'1
  • /src/Standards/Squiz/Sniffs/Commenting/FileCommentSniff.php
'Trait names must be suffixed with "Trait"; found "%s"'1
  • /src/Standards/Generic/Sniffs/NamingConventions/TraitNameSuffixSniff.php
'Usage of Yoda conditions is not allowed; switch the expression order'1
  • /src/Standards/Generic/Sniffs/ControlStructures/DisallowYodaConditionsSniff.php
'Abstract class names must be prefixed with "Abstract"; found "%s"'1
  • /src/Standards/Generic/Sniffs/NamingConventions/AbstractClassNamePrefixSniff.php
'Interface names must be suffixed with "Interface"; found "%s"'1
  • /src/Standards/Generic/Sniffs/NamingConventions/InterfaceNameSuffixSniff.php
'You must use "/**" style comments for a member variable comment'1
  • /src/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php
'Missing member variable doc comment'1
  • /src/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php
"PHP syntax error: $error"1
  • /src/Standards/Generic/Sniffs/PHP/SyntaxSniff.php
'Variable assignment found within a condition. Did you mean to do a comparison ?'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/AssignmentInConditionSniff.php
'Possible useless method overriding detected'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php
'Empty set of arbitrary parentheses found.'1
  • /src/Standards/Generic/Sniffs/WhiteSpace/ArbitraryParenthesesSpacingSniff.php
'Use of the GOTO language construct is discouraged'1
  • /src/Standards/Generic/Sniffs/PHP/DiscourageGotoSniff.php
'Arguments with default values must be at the end of the argument list'1
  • /src/Standards/PEAR/Sniffs/Functions/ValidDefaultValueSniff.php
'Exception type missing for @throws tag in function comment'1
  • /src/Standards/PEAR/Sniffs/Commenting/FunctionCommentSniff.php
'Manual creation of widget objects is banned; use Widget::getWidget(\'%s\'); instead'1
  • /src/Standards/MySource/Sniffs/Objects/DisallowNewWidgetSniff.php
'Keyword "this" can only be assigned to a variable called "self" or "_self"'1
  • /src/Standards/MySource/Sniffs/Objects/AssignThisSniff.php
'Browser-specific styles are not allowed'1
  • /src/Standards/MySource/Sniffs/CSS/BrowserSpecificStylesSniff.php
'Joining strings using inline arrays is not allowed; use the + operator instead'1
  • /src/Standards/MySource/Sniffs/Strings/JoinStringsSniff.php
'Included system "%s" is never used'1
  • /src/Standards/MySource/Sniffs/Channels/UnusedSystemSniff.php
'Function\'s nesting level (%s) exceeds allowed maximum of %s'1
  • /src/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php
'Function\'s cyclomatic complexity (%s) exceeds allowed maximum of %s'1
  • /src/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php
"You do not need to include \"%s\" from within the system's own actions file"1
  • /src/Standards/MySource/Sniffs/Channels/IncludeOwnSystemSniff.php
"Static calls to public methods in Action classes must not use the $type keyword; use %s::%s() instead"1
  • /src/Standards/MySource/Sniffs/Channels/DisallowSelfActionsSniff.php
'Static method called on non-included class or system "%s"; include system with Channels::includeSystem() or include class with require_once'1
  • /src/Standards/MySource/Sniffs/Channels/IncludeSystemSniff.php
'Variables, functions and labels must not be named "console"; name may conflict with Firebug internal variable'1
  • /src/Standards/MySource/Sniffs/Debug/FirebugConsoleSniff.php
'Call to debug function Debug::%s() must be removed'1
  • /src/Standards/MySource/Sniffs/Debug/DebugCodeSniff.php
'Empty %s statement detected'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php
'Use of the backtick operator is forbidden'1
  • /src/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php
'Use the PHP_SAPI constant instead of calling php_sapi_name()'1
  • /src/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php
'The $_REQUEST superglobal should not be used; use $_GET, $_POST, or $_COOKIE instead'1
  • /src/Standards/Generic/Sniffs/PHP/DisallowRequestSuperglobalSniff.php
'The PHP open tag does not have a corresponding PHP close tag'1
  • /src/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php
'Missing required strict_types declaration'1
  • /src/Standards/Generic/Sniffs/PHP/RequireStrictTypesSniff.php
'The opening PHP tag must be the first content in the file'1
  • /src/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php
'Boolean operators are not allowed outside of control structure conditions'1
  • /src/Standards/Squiz/Sniffs/PHP/DisallowBooleanStatementSniff.php
'Use of the "global" keyword is forbidden; use "$GLOBALS[\'%s\']" instead'1
  • /src/Standards/Squiz/Sniffs/PHP/GlobalKeywordSniff.php
'Assignments must be the first block of code on a line'1
  • /src/Standards/Squiz/Sniffs/PHP/DisallowMultipleAssignmentsSniff.php
'The use of inner functions is forbidden'1
  • /src/Standards/Squiz/Sniffs/PHP/InnerFunctionsSniff.php
'Use of heredoc and nowdoc syntax ("<<<") is not allowed; use standard strings or inline HTML instead'1
  • /src/Standards/Squiz/Sniffs/PHP/HeredocSniff.php
'The use of %s inside a loop condition is not allowed; assign the return value to a variable and use the variable in the loop condition instead'1
  • /src/Standards/Squiz/Sniffs/PHP/DisallowSizeFunctionsInLoopsSniff.php
'Variable "%s" appears more than once in function declaration'1
  • /src/Standards/Squiz/Sniffs/Functions/FunctionDuplicateArgumentSniff.php
'No space allowed between minus sign and number'1
  • /src/Standards/Squiz/Sniffs/Formatting/OperatorBracketSniff.php
'Empty CATCH statement must have a comment to explain why the exception is not handled'1
  • /src/Standards/Squiz/Sniffs/Commenting/EmptyCatchCommentSniff.php
'Call-time pass-by-reference calls are prohibited'1
  • /src/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php
'File contains %s byte order mark, which may corrupt your application'1
  • /src/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php
'Only one object structure is allowed in a file'1
  • /src/Standards/Generic/Sniffs/Files/OneObjectStructurePerFileSniff.php
'PHP files must only contain PHP code'1
  • /src/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php
'Only one trait is allowed in a file'1
  • /src/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php
'Filename "%s" doesn\'t match the expected filename "%s"'1
  • /src/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php
'Only one interface is allowed in a file'1
  • /src/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php
'Only one class is allowed in a file'1
  • /src/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php
'A PHP file should not be executable; found file permissions set to %s'1
  • /src/Standards/Generic/Sniffs/Files/ExecutableFileSniff.php
'Blank lines are not allowed between class names'1
  • /src/Standards/Squiz/Sniffs/CSS/ClassDefinitionNameSpacingSniff.php
'Logical operator "%s" is prohibited; use "%s" instead'1
  • /src/Standards/Squiz/Sniffs/Operators/ValidLogicalOperatorsSniff.php
'Only one interface or class is allowed in a file'1
  • /src/Standards/Squiz/Sniffs/Classes/ClassDeclarationSniff.php
'%s name doesn\'t match filename; expected "%s %s"'1
  • /src/Standards/Squiz/Sniffs/Classes/ClassFileNameSniff.php
'Duplicate property definition found for "%s"; previously defined on line %s'1
  • /src/Standards/Squiz/Sniffs/Classes/DuplicatePropertySniff.php
'Scope modifier not specified for member variable "%s"'1
  • /src/Standards/Squiz/Sniffs/Scope/MemberVarScopeSniff.php
'Object indexes must be written in dot notation'1
  • /src/Standards/Squiz/Sniffs/Objects/DisallowObjectStringIndexSniff.php
'Usage of "$this" in static methods will cause runtime errors'1
  • /src/Standards/Squiz/Sniffs/Scope/StaticThisUsageSniff.php
'Visibility must be declared on method "%s"'1
  • /src/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php
'New objects must be assigned to a variable'1
  • /src/Standards/Squiz/Sniffs/Objects/ObjectInstantiationSniff.php
'Named colours are forbidden; use hex, rgb, or rgba values instead'1
  • /src/Standards/Squiz/Sniffs/CSS/NamedColoursSniff.php
'Duplicate class definition found; first defined on line %s'1
  • /src/Standards/Squiz/Sniffs/CSS/DuplicateClassDefinitionSniff.php
'Style definition is empty'1
  • /src/Standards/Squiz/Sniffs/CSS/EmptyStyleDefinitionSniff.php
'Class definition is empty'1
  • /src/Standards/Squiz/Sniffs/CSS/EmptyClassDefinitionSniff.php
'No style definition found on line; check for missing colon'1
  • /src/Standards/Squiz/Sniffs/CSS/MissingColonSniff.php
'Duplicate style definition found; first defined on line %s'1
  • /src/Standards/Squiz/Sniffs/CSS/DuplicateStyleDefinitionSniff.php
'Compound namespaces cannot have a depth more than %s'1
  • /src/Standards/PSR12/Sniffs/Namespaces/CompoundNamespaceDepthSniff.php
'Closing brace must not be followed by any comment or statement on the same line'1
  • /src/Standards/PSR12/Sniffs/Classes/ClosingBraceSniff.php
'Method name "%s" is not in camel caps format'1
  • /src/Standards/PSR1/Sniffs/Methods/CamelCapsMethodNameSniff.php
'Additional whitespace found at start of file'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php
'Additional whitespace found at end of file'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php
'Inline control structures are not allowed'1
  • /src/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php
'Expected %s directly after closing brace'1
  • /src/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php
'jshint says: ' . trim($matches['error'])1
  • /src/Standards/Generic/Sniffs/Debug/JSHintSniff.php
'csslint says: ' . $output[($i + 1)]1
  • /src/Standards/Generic/Sniffs/Debug/CSSLintSniff.php
'jslint says: ' . trim($matches[2])1
  • /src/Standards/Squiz/Sniffs/Debug/JSLintSniff.php
'File has mixed line endings; this may cause incorrect results'1
  • /src/Files/File.php
'Variable "%s" contains numbers but this is discouraged'1
  • /src/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php
'Member variable "%s" contains numbers but this is discouraged'1
  • /src/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php
'The result of a function call should be assigned to a variable before being returned'1
  • /src/Standards/MySource/Sniffs/PHP/ReturnFunctionValueSniff.php
'Values submitted via Ajax requests should not be compared directly to NULL; use empty() instead'1
  • /src/Standards/MySource/Sniffs/PHP/AjaxNullComparisonSniff.php
'Do not use eval() to create objects dynamically; use reflection instead'1
  • /src/Standards/MySource/Sniffs/PHP/EvalObjectFactorySniff.php
'Function\'s nesting level (%s) exceeds %s; consider refactoring the function'1
  • /src/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php
'Function\'s cyclomatic complexity (%s) exceeds %s; consider refactoring the function'1
  • /src/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php
'Avoid function calls in a FOR loop test part'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php
'Avoid IF statements that are always true or false'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php
'Loop incrementor (%s) jumbling with inner loop'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php
'Unnecessary FINAL modifier in FINAL class'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php
'This FOR loop can be simplified to a WHILE loop'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php
'Possible parse error: %ss may not include member vars'1
  • /src/Files/File.php
'No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them.'1
  • /src/Files/File.php
'Empty PHP statement detected: superfluous semi-colon.'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/EmptyPHPStatementSniff.php
'Empty PHP open/close tag combination detected.'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/EmptyPHPStatementSniff.php
'Inline control structures are discouraged'1
  • /src/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php
'A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line %s and the first side effect is on line %s.'1
  • /src/Standards/PSR1/Sniffs/Files/SideEffectsSniff.php
'Visibility must be declared on all constants if your project supports PHP 7.1 or later'1
  • /src/Standards/PSR12/Sniffs/Properties/ConstantVisibilitySniff.php
'Consider putting global function "%s" in a static class'1
  • /src/Standards/Squiz/Sniffs/Functions/GlobalFunctionSniff.php
'Use of eval() is discouraged'1
  • /src/Standards/Squiz/Sniffs/PHP/EvalSniff.php
'This comment is %s%% valid code; is this commented out code?'1
  • /src/Standards/Squiz/Sniffs/PHP/CommentedOutCodeSniff.php
'Duplicate %s name "%s" found; first defined in %s on line %s'1
  • /src/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php
'Function closing brace must go on the next line following the body; found %s blank lines before brace'1
  • /src/Standards/PSR2/Sniffs/Methods/FunctionClosingBraceSniff.php
'There must be one blank line after the namespace declaration'1
  • /src/Standards/PSR2/Sniffs/Namespaces/NamespaceDeclarationSniff.php
'PHP keywords must be lowercase; expected "%s" but found "%s"'1
  • /src/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php
'TRUE, FALSE and NULL must be uppercase; expected "%s" but found "%s"'1
  • /src/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php
'TRUE, FALSE and NULL must be lowercase; expected "%s" but found "%s"'1
  • /src/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php
'PHP type casts must be lowercase; expected "%s" but found "%s"'1
  • /src/Standards/Generic/Sniffs/PHP/LowerCaseTypeSniff.php
'Cast statements must not contain whitespace; expected "%s" but found "%s"'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php
'Expected 0 blank lines after member var comment; %s found'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/MemberVarSpacingSniff.php
'Expected 0 blank lines after opening function brace; %s found'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/FunctionOpeningBraceSpaceSniff.php
'Functions must not contain multiple empty lines in a row; found %s empty lines'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php
'Scope keyword "%s" must be followed by a single space; found %s'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/ScopeKeywordSpacingSniff.php
'Space found before semicolon; expected "%s" but found "%s"'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/SemicolonSpacingSniff.php
'Space found before object operator'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php
'Space found after object operator'1
  • /src/Standards/Squiz/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php
'Tabs must be used to indent lines; spaces are not allowed'1
  • /src/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php
'A cast statement must not be followed by a space'1
  • /src/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php
'Short array syntax is not allowed'1
  • /src/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php
'End of line character is invalid; expected "%s" but found "%s"'1
  • /src/Standards/Generic/Sniffs/Files/LineEndingsSniff.php
'File must not end with a newline character'1
  • /src/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php
'File must end with a newline character'1
  • /src/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php
'Style definitions must be lowercase; expected %s but found %s'1
  • /src/Standards/Squiz/Sniffs/CSS/LowercaseStyleDefinitionSniff.php
'Each style definition must be on a line by itself'1
  • /src/Standards/Squiz/Sniffs/CSS/DisallowMultipleStyleDefinitionsSniff.php
'Echoed strings should not be bracketed'1
  • /src/Standards/Squiz/Sniffs/Strings/EchoedStringsSniff.php
'Expected 0 spaces before %s keyword; %s found'1
  • /src/Standards/Squiz/Sniffs/Classes/ClassDeclarationSniff.php
'Last member of object must not be followed by a comma'1
  • /src/Standards/Squiz/Sniffs/Objects/ObjectMemberCommaSniff.php
'Opening PHP tag must be on a line by itself'1
  • /src/Standards/PSR12/Sniffs/Files/OpenTagSniff.php
'Short form type keywords must be used. Found: %s'1
  • /src/Standards/PSR12/Sniffs/Keywords/ShortFormTypeKeywordsSniff.php
'Parentheses must be used when instantiating a new class'1
  • /src/Standards/PSR12/Sniffs/Classes/ClassInstantiationSniff.php
'Import statements must not begin with a leading backslash'1
  • /src/Standards/PSR12/Sniffs/Files/ImportStatementSniff.php
'Opening brace must not be followed by a blank line'1
  • /src/Standards/PSR12/Sniffs/Classes/OpeningBraceSpaceSniff.php
'Comments may not appear after statements'1
  • /src/Standards/Squiz/Sniffs/Commenting/PostStatementCommentSniff.php
'Usage of ELSEIF not allowed; use ELSE IF instead'1
  • /src/Standards/Squiz/Sniffs/ControlStructures/ElseIfDeclarationSniff.php
'Expected %s spaces after parameter type; %s found'1
  • /src/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php
'Expected %s spaces after parameter name; %s found'1
  • /src/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php
'Usage of ELSE IF is discouraged; use ELSEIF instead'1
  • /src/Standards/PSR2/Sniffs/ControlStructures/ElseIfDeclarationSniff.php
'Internal.ParseError.%sHasMemberVar'1
  • /src/Files/File.php
"\t%-{$valueWidth}s => %{$countWidth}s (%{$percentPrefixWidth}s%{$percentWidth}.2f%%)" . PHP_EOL1
  • /src/Reports/Info.php
"\t%-{$valueWidth}s => %{$countWidth}s (100.00%%)" . PHP_EOL1
  • /src/Reports/Info.php
'<?php %s;?>'1
  • /src/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php
'%o'1
  • /src/Standards/Generic/Sniffs/Files/ExecutableFileSniff.php
'Variable "%s" is not in valid camel caps format'2
  • /src/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php
  • /src/Standards/Squiz/Sniffs/NamingConventions/ValidVariableNameSniff.php
'String concat is not required here; use a single string instead'2
  • /src/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php (2)
'Each PHP statement must be on a line by itself'2
  • /src/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php (2)
'Short array syntax must be used to define arrays'2
  • /src/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php (2)
'There must not be a space between the question mark and the type in nullable type declarations'2
  • /src/Standards/PSR12/Sniffs/Functions/NullableTypeDeclarationSniff.php (2)
'Whitespace found at end of line'2
  • /src/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php (2)
'Expected %s'2
  • /src/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php (2)
'gjslint says: (%s) %s'2
  • /src/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php (2)
'eslint says: ' . $error->message2
  • /src/Standards/Generic/Sniffs/Debug/ESLintSniff.php (2)
'The method parameter %s is never used'2
  • /src/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php (2)
'A closing tag is not permitted at the end of a PHP file'2
  • /src/Standards/Zend/Sniffs/Files/ClosingTagSniff.php
  • /src/Standards/PSR2/Sniffs/Files/ClosingTagSniff.php
'/[%s]*([^%1$s]+)/'2
  • /src/Standards/PSR2/Tests/Methods/FunctionCallSignatureUnitTest.inc (2)
'%s%s '2
  • /src/Standards/PSR2/Tests/Methods/FunctionCallSignatureUnitTest.inc (2)
'%s keyword must be lowercase; expected "%s" but found "%s"'3
  • /src/Standards/Squiz/Sniffs/Functions/LowercaseFunctionKeywordsSniff.php
  • /src/Standards/Squiz/Sniffs/ControlStructures/LowercaseDeclarationSniff.php
  • /src/Standards/Squiz/Sniffs/Classes/LowercaseClassKeywordsSniff.php
'Missing file doc comment'4
  • /src/Standards/PEAR/Sniffs/Commenting/FileCommentSniff.php (2)
  • /src/Standards/Squiz/Sniffs/Commenting/FileCommentSniff.php (2)
'Merge conflict boundary found; type: %s'14
  • /src/Standards/Generic/Sniffs/VersionControl/GitMergeConflictSniff.php (14)