├── CHANGELOG.md ├── CodeSniffer.conf.dist ├── README.md ├── autoload.php ├── bin ├── phpcbf ├── phpcbf.bat ├── phpcs └── phpcs.bat ├── composer.json ├── licence.txt ├── phpcs.xsd ├── src ├── Config.php ├── Exceptions │ ├── DeepExitException.php │ ├── RuntimeException.php │ └── TokenizerException.php ├── Files │ ├── DummyFile.php │ ├── File.php │ ├── FileList.php │ └── LocalFile.php ├── Filters │ ├── ExactMatch.php │ ├── Filter.php │ ├── GitModified.php │ └── GitStaged.php ├── Fixer.php ├── Generators │ ├── Generator.php │ ├── HTML.php │ ├── Markdown.php │ └── Text.php ├── Reporter.php ├── Reports │ ├── Cbf.php │ ├── Checkstyle.php │ ├── Code.php │ ├── Csv.php │ ├── Diff.php │ ├── Emacs.php │ ├── Full.php │ ├── Gitblame.php │ ├── Hgblame.php │ ├── Info.php │ ├── Json.php │ ├── Junit.php │ ├── Notifysend.php │ ├── Performance.php │ ├── Report.php │ ├── Source.php │ ├── Summary.php │ ├── Svnblame.php │ ├── VersionControl.php │ └── Xml.php ├── Ruleset.php ├── Runner.php ├── Sniffs │ ├── AbstractArraySniff.php │ ├── AbstractPatternSniff.php │ ├── AbstractScopeSniff.php │ ├── AbstractVariableSniff.php │ ├── DeprecatedSniff.php │ └── Sniff.php ├── Standards │ ├── Generic │ │ ├── Docs │ │ │ ├── Arrays │ │ │ │ ├── ArrayIndentStandard.xml │ │ │ │ ├── DisallowLongArraySyntaxStandard.xml │ │ │ │ └── DisallowShortArraySyntaxStandard.xml │ │ │ ├── Classes │ │ │ │ ├── DuplicateClassNameStandard.xml │ │ │ │ └── OpeningBraceSameLineStandard.xml │ │ │ ├── CodeAnalysis │ │ │ │ ├── AssignmentInConditionStandard.xml │ │ │ │ ├── EmptyPHPStatementStandard.xml │ │ │ │ ├── EmptyStatementStandard.xml │ │ │ │ ├── ForLoopShouldBeWhileLoopStandard.xml │ │ │ │ ├── ForLoopWithTestFunctionCallStandard.xml │ │ │ │ ├── JumbledIncrementerStandard.xml │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceStandard.xml │ │ │ │ ├── UnconditionalIfStatementStandard.xml │ │ │ │ ├── UnnecessaryFinalModifierStandard.xml │ │ │ │ ├── UnusedFunctionParameterStandard.xml │ │ │ │ └── UselessOverridingMethodStandard.xml │ │ │ ├── Commenting │ │ │ │ ├── DocCommentStandard.xml │ │ │ │ ├── FixmeStandard.xml │ │ │ │ └── TodoStandard.xml │ │ │ ├── ControlStructures │ │ │ │ ├── DisallowYodaConditionsStandard.xml │ │ │ │ └── InlineControlStructureStandard.xml │ │ │ ├── Debug │ │ │ │ ├── CSSLintStandard.xml │ │ │ │ ├── ClosureLinterStandard.xml │ │ │ │ └── JSHintStandard.xml │ │ │ ├── Files │ │ │ │ ├── ByteOrderMarkStandard.xml │ │ │ │ ├── EndFileNewlineStandard.xml │ │ │ │ ├── EndFileNoNewlineStandard.xml │ │ │ │ ├── ExecutableFileStandard.xml │ │ │ │ ├── InlineHTMLStandard.xml │ │ │ │ ├── LineEndingsStandard.xml │ │ │ │ ├── LineLengthStandard.xml │ │ │ │ ├── LowercasedFilenameStandard.xml │ │ │ │ ├── OneClassPerFileStandard.xml │ │ │ │ ├── OneInterfacePerFileStandard.xml │ │ │ │ ├── OneObjectStructurePerFileStandard.xml │ │ │ │ └── OneTraitPerFileStandard.xml │ │ │ ├── Formatting │ │ │ │ ├── DisallowMultipleStatementsStandard.xml │ │ │ │ ├── MultipleStatementAlignmentStandard.xml │ │ │ │ ├── NoSpaceAfterCastStandard.xml │ │ │ │ ├── SpaceAfterCastStandard.xml │ │ │ │ ├── SpaceAfterNotStandard.xml │ │ │ │ └── SpaceBeforeCastStandard.xml │ │ │ ├── Functions │ │ │ │ ├── CallTimePassByReferenceStandard.xml │ │ │ │ ├── FunctionCallArgumentSpacingStandard.xml │ │ │ │ ├── OpeningFunctionBraceBsdAllmanStandard.xml │ │ │ │ └── OpeningFunctionBraceKernighanRitchieStandard.xml │ │ │ ├── Metrics │ │ │ │ ├── CyclomaticComplexityStandard.xml │ │ │ │ └── NestingLevelStandard.xml │ │ │ ├── NamingConventions │ │ │ │ ├── AbstractClassNamePrefixStandard.xml │ │ │ │ ├── CamelCapsFunctionNameStandard.xml │ │ │ │ ├── ConstructorNameStandard.xml │ │ │ │ ├── InterfaceNameSuffixStandard.xml │ │ │ │ ├── TraitNameSuffixStandard.xml │ │ │ │ └── UpperCaseConstantNameStandard.xml │ │ │ ├── PHP │ │ │ │ ├── BacktickOperatorStandard.xml │ │ │ │ ├── CharacterBeforePHPOpeningTagStandard.xml │ │ │ │ ├── ClosingPHPTagStandard.xml │ │ │ │ ├── DeprecatedFunctionsStandard.xml │ │ │ │ ├── DisallowAlternativePHPTagsStandard.xml │ │ │ │ ├── DisallowRequestSuperglobalStandard.xml │ │ │ │ ├── DisallowShortOpenTagStandard.xml │ │ │ │ ├── DiscourageGotoStandard.xml │ │ │ │ ├── ForbiddenFunctionsStandard.xml │ │ │ │ ├── LowerCaseConstantStandard.xml │ │ │ │ ├── LowerCaseKeywordStandard.xml │ │ │ │ ├── LowerCaseTypeStandard.xml │ │ │ │ ├── NoSilencedErrorsStandard.xml │ │ │ │ ├── RequireStrictTypesStandard.xml │ │ │ │ ├── SAPIUsageStandard.xml │ │ │ │ ├── SyntaxStandard.xml │ │ │ │ └── UpperCaseConstantStandard.xml │ │ │ ├── Strings │ │ │ │ ├── UnnecessaryHeredocStandard.xml │ │ │ │ └── UnnecessaryStringConcatStandard.xml │ │ │ ├── VersionControl │ │ │ │ └── SubversionPropertiesStandard.xml │ │ │ └── WhiteSpace │ │ │ │ ├── ArbitraryParenthesesSpacingStandard.xml │ │ │ │ ├── DisallowSpaceIndentStandard.xml │ │ │ │ ├── DisallowTabIndentStandard.xml │ │ │ │ ├── HereNowdocIdentifierSpacingStandard.xml │ │ │ │ ├── IncrementDecrementSpacingStandard.xml │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ ├── ScopeIndentStandard.xml │ │ │ │ └── SpreadOperatorSpacingAfterStandard.xml │ │ ├── Sniffs │ │ │ ├── Arrays │ │ │ │ ├── ArrayIndentSniff.php │ │ │ │ ├── DisallowLongArraySyntaxSniff.php │ │ │ │ └── DisallowShortArraySyntaxSniff.php │ │ │ ├── Classes │ │ │ │ ├── DuplicateClassNameSniff.php │ │ │ │ └── OpeningBraceSameLineSniff.php │ │ │ ├── CodeAnalysis │ │ │ │ ├── AssignmentInConditionSniff.php │ │ │ │ ├── EmptyPHPStatementSniff.php │ │ │ │ ├── EmptyStatementSniff.php │ │ │ │ ├── ForLoopShouldBeWhileLoopSniff.php │ │ │ │ ├── ForLoopWithTestFunctionCallSniff.php │ │ │ │ ├── JumbledIncrementerSniff.php │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceSniff.php │ │ │ │ ├── UnconditionalIfStatementSniff.php │ │ │ │ ├── UnnecessaryFinalModifierSniff.php │ │ │ │ ├── UnusedFunctionParameterSniff.php │ │ │ │ └── UselessOverridingMethodSniff.php │ │ │ ├── Commenting │ │ │ │ ├── DocCommentSniff.php │ │ │ │ ├── FixmeSniff.php │ │ │ │ └── TodoSniff.php │ │ │ ├── ControlStructures │ │ │ │ ├── DisallowYodaConditionsSniff.php │ │ │ │ └── InlineControlStructureSniff.php │ │ │ ├── Debug │ │ │ │ ├── CSSLintSniff.php │ │ │ │ ├── ClosureLinterSniff.php │ │ │ │ ├── ESLintSniff.php │ │ │ │ └── JSHintSniff.php │ │ │ ├── Files │ │ │ │ ├── ByteOrderMarkSniff.php │ │ │ │ ├── EndFileNewlineSniff.php │ │ │ │ ├── EndFileNoNewlineSniff.php │ │ │ │ ├── ExecutableFileSniff.php │ │ │ │ ├── InlineHTMLSniff.php │ │ │ │ ├── LineEndingsSniff.php │ │ │ │ ├── LineLengthSniff.php │ │ │ │ ├── LowercasedFilenameSniff.php │ │ │ │ ├── OneClassPerFileSniff.php │ │ │ │ ├── OneInterfacePerFileSniff.php │ │ │ │ ├── OneObjectStructurePerFileSniff.php │ │ │ │ └── OneTraitPerFileSniff.php │ │ │ ├── Formatting │ │ │ │ ├── DisallowMultipleStatementsSniff.php │ │ │ │ ├── MultipleStatementAlignmentSniff.php │ │ │ │ ├── NoSpaceAfterCastSniff.php │ │ │ │ ├── SpaceAfterCastSniff.php │ │ │ │ ├── SpaceAfterNotSniff.php │ │ │ │ └── SpaceBeforeCastSniff.php │ │ │ ├── Functions │ │ │ │ ├── CallTimePassByReferenceSniff.php │ │ │ │ ├── FunctionCallArgumentSpacingSniff.php │ │ │ │ ├── OpeningFunctionBraceBsdAllmanSniff.php │ │ │ │ └── OpeningFunctionBraceKernighanRitchieSniff.php │ │ │ ├── Metrics │ │ │ │ ├── CyclomaticComplexitySniff.php │ │ │ │ └── NestingLevelSniff.php │ │ │ ├── NamingConventions │ │ │ │ ├── AbstractClassNamePrefixSniff.php │ │ │ │ ├── CamelCapsFunctionNameSniff.php │ │ │ │ ├── ConstructorNameSniff.php │ │ │ │ ├── InterfaceNameSuffixSniff.php │ │ │ │ ├── TraitNameSuffixSniff.php │ │ │ │ └── UpperCaseConstantNameSniff.php │ │ │ ├── PHP │ │ │ │ ├── BacktickOperatorSniff.php │ │ │ │ ├── CharacterBeforePHPOpeningTagSniff.php │ │ │ │ ├── ClosingPHPTagSniff.php │ │ │ │ ├── DeprecatedFunctionsSniff.php │ │ │ │ ├── DisallowAlternativePHPTagsSniff.php │ │ │ │ ├── DisallowRequestSuperglobalSniff.php │ │ │ │ ├── DisallowShortOpenTagSniff.php │ │ │ │ ├── DiscourageGotoSniff.php │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ ├── LowerCaseConstantSniff.php │ │ │ │ ├── LowerCaseKeywordSniff.php │ │ │ │ ├── LowerCaseTypeSniff.php │ │ │ │ ├── NoSilencedErrorsSniff.php │ │ │ │ ├── RequireStrictTypesSniff.php │ │ │ │ ├── SAPIUsageSniff.php │ │ │ │ ├── SyntaxSniff.php │ │ │ │ └── UpperCaseConstantSniff.php │ │ │ ├── Strings │ │ │ │ ├── UnnecessaryHeredocSniff.php │ │ │ │ └── UnnecessaryStringConcatSniff.php │ │ │ ├── VersionControl │ │ │ │ ├── GitMergeConflictSniff.php │ │ │ │ └── SubversionPropertiesSniff.php │ │ │ └── WhiteSpace │ │ │ │ ├── ArbitraryParenthesesSpacingSniff.php │ │ │ │ ├── DisallowSpaceIndentSniff.php │ │ │ │ ├── DisallowTabIndentSniff.php │ │ │ │ ├── HereNowdocIdentifierSpacingSniff.php │ │ │ │ ├── IncrementDecrementSpacingSniff.php │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ ├── ScopeIndentSniff.php │ │ │ │ └── SpreadOperatorSpacingAfterSniff.php │ │ ├── Tests │ │ │ ├── Arrays │ │ │ │ ├── ArrayIndentUnitTest.inc │ │ │ │ ├── ArrayIndentUnitTest.inc.fixed │ │ │ │ ├── ArrayIndentUnitTest.php │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.1.inc │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.1.inc.fixed │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.2.inc │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.2.inc.fixed │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.3.inc │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.php │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc.fixed │ │ │ │ └── DisallowShortArraySyntaxUnitTest.php │ │ │ ├── Classes │ │ │ │ ├── DuplicateClassNameUnitTest.1.inc │ │ │ │ ├── DuplicateClassNameUnitTest.10.inc │ │ │ │ ├── DuplicateClassNameUnitTest.11.inc │ │ │ │ ├── DuplicateClassNameUnitTest.2.inc │ │ │ │ ├── DuplicateClassNameUnitTest.3.inc │ │ │ │ ├── DuplicateClassNameUnitTest.4.inc │ │ │ │ ├── DuplicateClassNameUnitTest.5.inc │ │ │ │ ├── DuplicateClassNameUnitTest.6.inc │ │ │ │ ├── DuplicateClassNameUnitTest.7.inc │ │ │ │ ├── DuplicateClassNameUnitTest.8.inc │ │ │ │ ├── DuplicateClassNameUnitTest.9.inc │ │ │ │ ├── DuplicateClassNameUnitTest.97.inc │ │ │ │ ├── DuplicateClassNameUnitTest.98.inc │ │ │ │ ├── DuplicateClassNameUnitTest.99.inc │ │ │ │ ├── DuplicateClassNameUnitTest.php │ │ │ │ ├── OpeningBraceSameLineUnitTest.inc │ │ │ │ ├── OpeningBraceSameLineUnitTest.inc.fixed │ │ │ │ └── OpeningBraceSameLineUnitTest.php │ │ │ ├── CodeAnalysis │ │ │ │ ├── AssignmentInConditionUnitTest.1.inc │ │ │ │ ├── AssignmentInConditionUnitTest.2.inc │ │ │ │ ├── AssignmentInConditionUnitTest.3.inc │ │ │ │ ├── AssignmentInConditionUnitTest.4.inc │ │ │ │ ├── AssignmentInConditionUnitTest.5.inc │ │ │ │ ├── AssignmentInConditionUnitTest.6.inc │ │ │ │ ├── AssignmentInConditionUnitTest.php │ │ │ │ ├── EmptyPHPStatementUnitTest.1.inc │ │ │ │ ├── EmptyPHPStatementUnitTest.1.inc.fixed │ │ │ │ ├── EmptyPHPStatementUnitTest.2.inc │ │ │ │ ├── EmptyPHPStatementUnitTest.2.inc.fixed │ │ │ │ ├── EmptyPHPStatementUnitTest.php │ │ │ │ ├── EmptyStatementUnitTest.inc │ │ │ │ ├── EmptyStatementUnitTest.php │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.1.inc │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.2.inc │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.3.inc │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.php │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.1.inc │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.2.inc │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.3.inc │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.php │ │ │ │ ├── JumbledIncrementerUnitTest.1.inc │ │ │ │ ├── JumbledIncrementerUnitTest.2.inc │ │ │ │ ├── JumbledIncrementerUnitTest.3.inc │ │ │ │ ├── JumbledIncrementerUnitTest.4.inc │ │ │ │ ├── JumbledIncrementerUnitTest.php │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceUnitTest.inc │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceUnitTest.php │ │ │ │ ├── UnconditionalIfStatementUnitTest.1.inc │ │ │ │ ├── UnconditionalIfStatementUnitTest.2.inc │ │ │ │ ├── UnconditionalIfStatementUnitTest.php │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.1.inc │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.2.inc │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.php │ │ │ │ ├── UnusedFunctionParameterUnitTest.1.inc │ │ │ │ ├── UnusedFunctionParameterUnitTest.2.inc │ │ │ │ ├── UnusedFunctionParameterUnitTest.3.inc │ │ │ │ ├── UnusedFunctionParameterUnitTest.php │ │ │ │ ├── UselessOverridingMethodUnitTest.1.inc │ │ │ │ ├── UselessOverridingMethodUnitTest.2.inc │ │ │ │ ├── UselessOverridingMethodUnitTest.3.inc │ │ │ │ ├── UselessOverridingMethodUnitTest.4.inc │ │ │ │ ├── UselessOverridingMethodUnitTest.5.inc │ │ │ │ ├── UselessOverridingMethodUnitTest.6.inc │ │ │ │ └── UselessOverridingMethodUnitTest.php │ │ │ ├── Commenting │ │ │ │ ├── DocCommentUnitTest.1.inc │ │ │ │ ├── DocCommentUnitTest.1.inc.fixed │ │ │ │ ├── DocCommentUnitTest.1.js │ │ │ │ ├── DocCommentUnitTest.1.js.fixed │ │ │ │ ├── DocCommentUnitTest.2.inc │ │ │ │ ├── DocCommentUnitTest.2.js │ │ │ │ ├── DocCommentUnitTest.php │ │ │ │ ├── FixmeUnitTest.inc │ │ │ │ ├── FixmeUnitTest.js │ │ │ │ ├── FixmeUnitTest.php │ │ │ │ ├── TodoUnitTest.inc │ │ │ │ ├── TodoUnitTest.js │ │ │ │ └── TodoUnitTest.php │ │ │ ├── ControlStructures │ │ │ │ ├── DisallowYodaConditionsUnitTest.inc │ │ │ │ ├── DisallowYodaConditionsUnitTest.php │ │ │ │ ├── InlineControlStructureUnitTest.1.inc │ │ │ │ ├── InlineControlStructureUnitTest.1.inc.fixed │ │ │ │ ├── InlineControlStructureUnitTest.1.js │ │ │ │ ├── InlineControlStructureUnitTest.1.js.fixed │ │ │ │ ├── InlineControlStructureUnitTest.2.inc │ │ │ │ ├── InlineControlStructureUnitTest.2.js │ │ │ │ ├── InlineControlStructureUnitTest.3.inc │ │ │ │ ├── InlineControlStructureUnitTest.3.js │ │ │ │ ├── InlineControlStructureUnitTest.4.inc │ │ │ │ ├── InlineControlStructureUnitTest.5.inc │ │ │ │ ├── InlineControlStructureUnitTest.6.inc │ │ │ │ ├── InlineControlStructureUnitTest.7.inc │ │ │ │ └── InlineControlStructureUnitTest.php │ │ │ ├── Debug │ │ │ │ ├── CSSLintUnitTest.css │ │ │ │ ├── CSSLintUnitTest.php │ │ │ │ ├── ClosureLinterUnitTest.js │ │ │ │ ├── ClosureLinterUnitTest.php │ │ │ │ ├── ESLintUnitTest.js │ │ │ │ ├── ESLintUnitTest.php │ │ │ │ ├── JSHintUnitTest.js │ │ │ │ └── JSHintUnitTest.php │ │ │ ├── Files │ │ │ │ ├── ByteOrderMarkUnitTest.1.inc │ │ │ │ ├── ByteOrderMarkUnitTest.2.inc │ │ │ │ ├── ByteOrderMarkUnitTest.3.inc │ │ │ │ ├── ByteOrderMarkUnitTest.4.inc │ │ │ │ ├── ByteOrderMarkUnitTest.5.inc │ │ │ │ ├── ByteOrderMarkUnitTest.php │ │ │ │ ├── EndFileNewlineUnitTest.1.css │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ ├── EndFileNewlineUnitTest.1.js │ │ │ │ ├── EndFileNewlineUnitTest.2.css │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ ├── EndFileNewlineUnitTest.2.js │ │ │ │ ├── EndFileNewlineUnitTest.3.css │ │ │ │ ├── EndFileNewlineUnitTest.3.css.fixed │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.3.js │ │ │ │ ├── EndFileNewlineUnitTest.3.js.fixed │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ ├── EndFileNewlineUnitTest.4.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ ├── EndFileNewlineUnitTest.6.inc │ │ │ │ ├── EndFileNewlineUnitTest.6.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.7.inc │ │ │ │ ├── EndFileNewlineUnitTest.7.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.8.inc │ │ │ │ ├── EndFileNewlineUnitTest.php │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.10.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.3.css │ │ │ │ ├── EndFileNoNewlineUnitTest.3.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.3.js │ │ │ │ ├── EndFileNoNewlineUnitTest.4.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.5.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.7.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.8.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.8.inc.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.9.inc │ │ │ │ ├── EndFileNoNewlineUnitTest.9.inc.fixed │ │ │ │ ├── EndFileNoNewlineUnitTest.php │ │ │ │ ├── ExecutableFileUnitTest.1.inc │ │ │ │ ├── ExecutableFileUnitTest.2.inc │ │ │ │ ├── ExecutableFileUnitTest.3.inc │ │ │ │ ├── ExecutableFileUnitTest.4.inc │ │ │ │ ├── ExecutableFileUnitTest.php │ │ │ │ ├── InlineHTMLUnitTest.1.inc │ │ │ │ ├── InlineHTMLUnitTest.2.inc │ │ │ │ ├── InlineHTMLUnitTest.3.inc │ │ │ │ ├── InlineHTMLUnitTest.4.inc │ │ │ │ ├── InlineHTMLUnitTest.5.inc │ │ │ │ ├── InlineHTMLUnitTest.6.inc │ │ │ │ ├── InlineHTMLUnitTest.7.inc │ │ │ │ ├── InlineHTMLUnitTest.php │ │ │ │ ├── LineEndingsUnitTest.1.inc │ │ │ │ ├── LineEndingsUnitTest.1.inc.fixed │ │ │ │ ├── LineEndingsUnitTest.2.inc │ │ │ │ ├── LineEndingsUnitTest.2.inc.fixed │ │ │ │ ├── LineEndingsUnitTest.css │ │ │ │ ├── LineEndingsUnitTest.css.fixed │ │ │ │ ├── LineEndingsUnitTest.js │ │ │ │ ├── LineEndingsUnitTest.js.fixed │ │ │ │ ├── LineEndingsUnitTest.php │ │ │ │ ├── LineLengthUnitTest.1.inc │ │ │ │ ├── LineLengthUnitTest.2.inc │ │ │ │ ├── LineLengthUnitTest.3.inc │ │ │ │ ├── LineLengthUnitTest.4.inc │ │ │ │ ├── LineLengthUnitTest.php │ │ │ │ ├── LowercasedFilenameUnitTest.1.inc │ │ │ │ ├── LowercasedFilenameUnitTest.2.inc │ │ │ │ ├── LowercasedFilenameUnitTest.php │ │ │ │ ├── OneClassPerFileUnitTest.inc │ │ │ │ ├── OneClassPerFileUnitTest.php │ │ │ │ ├── OneInterfacePerFileUnitTest.inc │ │ │ │ ├── OneInterfacePerFileUnitTest.php │ │ │ │ ├── OneObjectStructurePerFileUnitTest.inc │ │ │ │ ├── OneObjectStructurePerFileUnitTest.php │ │ │ │ ├── OneTraitPerFileUnitTest.inc │ │ │ │ ├── OneTraitPerFileUnitTest.php │ │ │ │ └── lowercased_filename_unit_test.inc │ │ │ ├── Formatting │ │ │ │ ├── DisallowMultipleStatementsUnitTest.inc │ │ │ │ ├── DisallowMultipleStatementsUnitTest.inc.fixed │ │ │ │ ├── DisallowMultipleStatementsUnitTest.php │ │ │ │ ├── MultipleStatementAlignmentUnitTest.inc │ │ │ │ ├── MultipleStatementAlignmentUnitTest.inc.fixed │ │ │ │ ├── MultipleStatementAlignmentUnitTest.js │ │ │ │ ├── MultipleStatementAlignmentUnitTest.js.fixed │ │ │ │ ├── MultipleStatementAlignmentUnitTest.php │ │ │ │ ├── NoSpaceAfterCastUnitTest.inc │ │ │ │ ├── NoSpaceAfterCastUnitTest.inc.fixed │ │ │ │ ├── NoSpaceAfterCastUnitTest.php │ │ │ │ ├── SpaceAfterCastUnitTest.1.inc │ │ │ │ ├── SpaceAfterCastUnitTest.1.inc.fixed │ │ │ │ ├── SpaceAfterCastUnitTest.2.inc │ │ │ │ ├── SpaceAfterCastUnitTest.php │ │ │ │ ├── SpaceAfterNotUnitTest.1.inc │ │ │ │ ├── SpaceAfterNotUnitTest.1.inc.fixed │ │ │ │ ├── SpaceAfterNotUnitTest.2.inc │ │ │ │ ├── SpaceAfterNotUnitTest.js │ │ │ │ ├── SpaceAfterNotUnitTest.js.fixed │ │ │ │ ├── SpaceAfterNotUnitTest.php │ │ │ │ ├── SpaceBeforeCastUnitTest.inc │ │ │ │ ├── SpaceBeforeCastUnitTest.inc.fixed │ │ │ │ └── SpaceBeforeCastUnitTest.php │ │ │ ├── Functions │ │ │ │ ├── CallTimePassByReferenceUnitTest.1.inc │ │ │ │ ├── CallTimePassByReferenceUnitTest.2.inc │ │ │ │ ├── CallTimePassByReferenceUnitTest.3.inc │ │ │ │ ├── CallTimePassByReferenceUnitTest.php │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.1.inc │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.1.inc.fixed │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.2.inc │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.php │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.inc │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.inc.fixed │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.php │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.1.inc │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.1.inc.fixed │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.2.inc │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.2.inc.fixed │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.3.inc │ │ │ │ └── OpeningFunctionBraceKernighanRitchieUnitTest.php │ │ │ ├── Metrics │ │ │ │ ├── CyclomaticComplexityUnitTest.1.inc │ │ │ │ ├── CyclomaticComplexityUnitTest.2.inc │ │ │ │ ├── CyclomaticComplexityUnitTest.3.inc │ │ │ │ ├── CyclomaticComplexityUnitTest.php │ │ │ │ ├── NestingLevelUnitTest.1.inc │ │ │ │ ├── NestingLevelUnitTest.2.inc │ │ │ │ ├── NestingLevelUnitTest.3.inc │ │ │ │ └── NestingLevelUnitTest.php │ │ │ ├── NamingConventions │ │ │ │ ├── AbstractClassNamePrefixUnitTest.1.inc │ │ │ │ ├── AbstractClassNamePrefixUnitTest.2.inc │ │ │ │ ├── AbstractClassNamePrefixUnitTest.php │ │ │ │ ├── CamelCapsFunctionNameUnitTest.1.inc │ │ │ │ ├── CamelCapsFunctionNameUnitTest.2.inc │ │ │ │ ├── CamelCapsFunctionNameUnitTest.3.inc │ │ │ │ ├── CamelCapsFunctionNameUnitTest.php │ │ │ │ ├── ConstructorNameUnitTest.1.inc │ │ │ │ ├── ConstructorNameUnitTest.2.inc │ │ │ │ ├── ConstructorNameUnitTest.php │ │ │ │ ├── InterfaceNameSuffixUnitTest.1.inc │ │ │ │ ├── InterfaceNameSuffixUnitTest.2.inc │ │ │ │ ├── InterfaceNameSuffixUnitTest.php │ │ │ │ ├── TraitNameSuffixUnitTest.1.inc │ │ │ │ ├── TraitNameSuffixUnitTest.2.inc │ │ │ │ ├── TraitNameSuffixUnitTest.php │ │ │ │ ├── UpperCaseConstantNameUnitTest.1.inc │ │ │ │ ├── UpperCaseConstantNameUnitTest.2.inc │ │ │ │ ├── UpperCaseConstantNameUnitTest.3.inc │ │ │ │ ├── UpperCaseConstantNameUnitTest.4.inc │ │ │ │ ├── UpperCaseConstantNameUnitTest.5.inc │ │ │ │ └── UpperCaseConstantNameUnitTest.php │ │ │ ├── PHP │ │ │ │ ├── BacktickOperatorUnitTest.inc │ │ │ │ ├── BacktickOperatorUnitTest.php │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.1.inc │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.2.inc │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.3.inc │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.php │ │ │ │ ├── ClosingPHPTagUnitTest.1.inc │ │ │ │ ├── ClosingPHPTagUnitTest.2.inc │ │ │ │ ├── ClosingPHPTagUnitTest.php │ │ │ │ ├── DeprecatedFunctionsUnitTest.inc │ │ │ │ ├── DeprecatedFunctionsUnitTest.php │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.1.inc │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.1.inc.fixed │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc.fixed │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.3.inc │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.php │ │ │ │ ├── DisallowRequestSuperglobalUnitTest.inc │ │ │ │ ├── DisallowRequestSuperglobalUnitTest.php │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc.fixed │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc.fixed │ │ │ │ ├── DisallowShortOpenTagUnitTest.3.inc │ │ │ │ ├── DisallowShortOpenTagUnitTest.4.inc │ │ │ │ ├── DisallowShortOpenTagUnitTest.5.inc │ │ │ │ ├── DisallowShortOpenTagUnitTest.php │ │ │ │ ├── DiscourageGotoUnitTest.inc │ │ │ │ ├── DiscourageGotoUnitTest.php │ │ │ │ ├── ForbiddenFunctionsUnitTest.inc │ │ │ │ ├── ForbiddenFunctionsUnitTest.php │ │ │ │ ├── LowerCaseConstantUnitTest.1.inc │ │ │ │ ├── LowerCaseConstantUnitTest.1.inc.fixed │ │ │ │ ├── LowerCaseConstantUnitTest.2.inc │ │ │ │ ├── LowerCaseConstantUnitTest.js │ │ │ │ ├── LowerCaseConstantUnitTest.js.fixed │ │ │ │ ├── LowerCaseConstantUnitTest.php │ │ │ │ ├── LowerCaseKeywordUnitTest.inc │ │ │ │ ├── LowerCaseKeywordUnitTest.inc.fixed │ │ │ │ ├── LowerCaseKeywordUnitTest.php │ │ │ │ ├── LowerCaseTypeUnitTest.inc │ │ │ │ ├── LowerCaseTypeUnitTest.inc.fixed │ │ │ │ ├── LowerCaseTypeUnitTest.php │ │ │ │ ├── NoSilencedErrorsUnitTest.inc │ │ │ │ ├── NoSilencedErrorsUnitTest.php │ │ │ │ ├── RequireStrictTypesUnitTest.1.inc │ │ │ │ ├── RequireStrictTypesUnitTest.10.inc │ │ │ │ ├── RequireStrictTypesUnitTest.11.inc │ │ │ │ ├── RequireStrictTypesUnitTest.11.inc.fixed │ │ │ │ ├── RequireStrictTypesUnitTest.12.inc │ │ │ │ ├── RequireStrictTypesUnitTest.12.inc.fixed │ │ │ │ ├── RequireStrictTypesUnitTest.13.inc │ │ │ │ ├── RequireStrictTypesUnitTest.14.inc │ │ │ │ ├── RequireStrictTypesUnitTest.14.inc.fixed │ │ │ │ ├── RequireStrictTypesUnitTest.15.inc │ │ │ │ ├── RequireStrictTypesUnitTest.15.inc.fixed │ │ │ │ ├── RequireStrictTypesUnitTest.2.inc │ │ │ │ ├── RequireStrictTypesUnitTest.3.inc │ │ │ │ ├── RequireStrictTypesUnitTest.4.inc │ │ │ │ ├── RequireStrictTypesUnitTest.5.inc │ │ │ │ ├── RequireStrictTypesUnitTest.6.inc │ │ │ │ ├── RequireStrictTypesUnitTest.7.inc │ │ │ │ ├── RequireStrictTypesUnitTest.8.inc │ │ │ │ ├── RequireStrictTypesUnitTest.9.inc │ │ │ │ ├── RequireStrictTypesUnitTest.php │ │ │ │ ├── SAPIUsageUnitTest.inc │ │ │ │ ├── SAPIUsageUnitTest.php │ │ │ │ ├── SyntaxUnitTest.1.inc │ │ │ │ ├── SyntaxUnitTest.2.inc │ │ │ │ ├── SyntaxUnitTest.php │ │ │ │ ├── UpperCaseConstantUnitTest.inc │ │ │ │ ├── UpperCaseConstantUnitTest.inc.fixed │ │ │ │ └── UpperCaseConstantUnitTest.php │ │ │ ├── Strings │ │ │ │ ├── UnnecessaryHeredocUnitTest.1.inc │ │ │ │ ├── UnnecessaryHeredocUnitTest.1.inc.fixed │ │ │ │ ├── UnnecessaryHeredocUnitTest.2.inc │ │ │ │ ├── UnnecessaryHeredocUnitTest.2.inc.fixed │ │ │ │ ├── UnnecessaryHeredocUnitTest.3.inc │ │ │ │ ├── UnnecessaryHeredocUnitTest.php │ │ │ │ ├── UnnecessaryStringConcatUnitTest.1.inc │ │ │ │ ├── UnnecessaryStringConcatUnitTest.2.inc │ │ │ │ ├── UnnecessaryStringConcatUnitTest.js │ │ │ │ └── UnnecessaryStringConcatUnitTest.php │ │ │ ├── VersionControl │ │ │ │ ├── GitMergeConflictUnitTest.1.css │ │ │ │ ├── GitMergeConflictUnitTest.1.inc │ │ │ │ ├── GitMergeConflictUnitTest.2.css │ │ │ │ ├── GitMergeConflictUnitTest.2.inc │ │ │ │ ├── GitMergeConflictUnitTest.3.inc │ │ │ │ ├── GitMergeConflictUnitTest.4.inc │ │ │ │ ├── GitMergeConflictUnitTest.5.inc │ │ │ │ ├── GitMergeConflictUnitTest.6.inc │ │ │ │ ├── GitMergeConflictUnitTest.7.inc │ │ │ │ ├── GitMergeConflictUnitTest.js │ │ │ │ ├── GitMergeConflictUnitTest.php │ │ │ │ ├── SubversionPropertiesUnitTest.inc │ │ │ │ └── SubversionPropertiesUnitTest.php │ │ │ └── WhiteSpace │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.1.inc │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.1.inc.fixed │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.2.inc │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.php │ │ │ │ ├── DisallowSpaceIndentUnitTest.1.inc │ │ │ │ ├── DisallowSpaceIndentUnitTest.1.inc.fixed │ │ │ │ ├── DisallowSpaceIndentUnitTest.2.inc │ │ │ │ ├── DisallowSpaceIndentUnitTest.2.inc.fixed │ │ │ │ ├── DisallowSpaceIndentUnitTest.3.inc │ │ │ │ ├── DisallowSpaceIndentUnitTest.3.inc.fixed │ │ │ │ ├── DisallowSpaceIndentUnitTest.4.inc │ │ │ │ ├── DisallowSpaceIndentUnitTest.css │ │ │ │ ├── DisallowSpaceIndentUnitTest.css.fixed │ │ │ │ ├── DisallowSpaceIndentUnitTest.js │ │ │ │ ├── DisallowSpaceIndentUnitTest.js.fixed │ │ │ │ ├── DisallowSpaceIndentUnitTest.php │ │ │ │ ├── DisallowTabIndentUnitTest.1.inc │ │ │ │ ├── DisallowTabIndentUnitTest.1.inc.fixed │ │ │ │ ├── DisallowTabIndentUnitTest.2.inc │ │ │ │ ├── DisallowTabIndentUnitTest.2.inc.fixed │ │ │ │ ├── DisallowTabIndentUnitTest.3.inc │ │ │ │ ├── DisallowTabIndentUnitTest.css │ │ │ │ ├── DisallowTabIndentUnitTest.css.fixed │ │ │ │ ├── DisallowTabIndentUnitTest.js │ │ │ │ ├── DisallowTabIndentUnitTest.js.fixed │ │ │ │ ├── DisallowTabIndentUnitTest.php │ │ │ │ ├── HereNowdocIdentifierSpacingUnitTest.inc │ │ │ │ ├── HereNowdocIdentifierSpacingUnitTest.inc.fixed │ │ │ │ ├── HereNowdocIdentifierSpacingUnitTest.php │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc.fixed │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js.fixed │ │ │ │ ├── IncrementDecrementSpacingUnitTest.php │ │ │ │ ├── LanguageConstructSpacingUnitTest.1.inc │ │ │ │ ├── LanguageConstructSpacingUnitTest.1.inc.fixed │ │ │ │ ├── LanguageConstructSpacingUnitTest.2.inc │ │ │ │ ├── LanguageConstructSpacingUnitTest.php │ │ │ │ ├── ScopeIndentUnitTest.1.inc │ │ │ │ ├── ScopeIndentUnitTest.1.inc.fixed │ │ │ │ ├── ScopeIndentUnitTest.1.js │ │ │ │ ├── ScopeIndentUnitTest.1.js.fixed │ │ │ │ ├── ScopeIndentUnitTest.2.inc │ │ │ │ ├── ScopeIndentUnitTest.2.inc.fixed │ │ │ │ ├── ScopeIndentUnitTest.3.inc │ │ │ │ ├── ScopeIndentUnitTest.3.inc.fixed │ │ │ │ ├── ScopeIndentUnitTest.4.inc │ │ │ │ ├── ScopeIndentUnitTest.php │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.1.inc │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.1.inc.fixed │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.2.inc │ │ │ │ └── SpreadOperatorSpacingAfterUnitTest.php │ │ └── ruleset.xml │ ├── MySource │ │ ├── Sniffs │ │ │ ├── CSS │ │ │ │ └── BrowserSpecificStylesSniff.php │ │ │ ├── Channels │ │ │ │ ├── DisallowSelfActionsSniff.php │ │ │ │ ├── IncludeOwnSystemSniff.php │ │ │ │ ├── IncludeSystemSniff.php │ │ │ │ └── UnusedSystemSniff.php │ │ │ ├── Commenting │ │ │ │ └── FunctionCommentSniff.php │ │ │ ├── Debug │ │ │ │ ├── DebugCodeSniff.php │ │ │ │ └── FirebugConsoleSniff.php │ │ │ ├── Objects │ │ │ │ ├── AssignThisSniff.php │ │ │ │ ├── CreateWidgetTypeCallbackSniff.php │ │ │ │ └── DisallowNewWidgetSniff.php │ │ │ ├── PHP │ │ │ │ ├── AjaxNullComparisonSniff.php │ │ │ │ ├── EvalObjectFactorySniff.php │ │ │ │ ├── GetRequestDataSniff.php │ │ │ │ └── ReturnFunctionValueSniff.php │ │ │ └── Strings │ │ │ │ └── JoinStringsSniff.php │ │ ├── Tests │ │ │ ├── CSS │ │ │ │ ├── BrowserSpecificStylesUnitTest.css │ │ │ │ └── BrowserSpecificStylesUnitTest.php │ │ │ ├── Channels │ │ │ │ ├── DisallowSelfActionsUnitTest.inc │ │ │ │ ├── DisallowSelfActionsUnitTest.php │ │ │ │ ├── IncludeSystemUnitTest.inc │ │ │ │ ├── IncludeSystemUnitTest.php │ │ │ │ ├── UnusedSystemUnitTest.inc │ │ │ │ └── UnusedSystemUnitTest.php │ │ │ ├── Commenting │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ └── FunctionCommentUnitTest.php │ │ │ ├── Debug │ │ │ │ ├── DebugCodeUnitTest.inc │ │ │ │ ├── DebugCodeUnitTest.php │ │ │ │ ├── FirebugConsoleUnitTest.js │ │ │ │ └── FirebugConsoleUnitTest.php │ │ │ ├── Objects │ │ │ │ ├── AssignThisUnitTest.js │ │ │ │ ├── AssignThisUnitTest.php │ │ │ │ ├── CreateWidgetTypeCallbackUnitTest.js │ │ │ │ ├── CreateWidgetTypeCallbackUnitTest.php │ │ │ │ ├── DisallowNewWidgetUnitTest.inc │ │ │ │ └── DisallowNewWidgetUnitTest.php │ │ │ ├── PHP │ │ │ │ ├── AjaxNullComparisonUnitTest.inc │ │ │ │ ├── AjaxNullComparisonUnitTest.php │ │ │ │ ├── EvalObjectFactoryUnitTest.inc │ │ │ │ ├── EvalObjectFactoryUnitTest.php │ │ │ │ ├── GetRequestDataUnitTest.inc │ │ │ │ ├── GetRequestDataUnitTest.php │ │ │ │ ├── ReturnFunctionValueUnitTest.inc │ │ │ │ └── ReturnFunctionValueUnitTest.php │ │ │ └── Strings │ │ │ │ ├── JoinStringsUnitTest.js │ │ │ │ └── JoinStringsUnitTest.php │ │ └── ruleset.xml │ ├── PEAR │ │ ├── Docs │ │ │ ├── Classes │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ ├── Commenting │ │ │ │ ├── ClassCommentStandard.xml │ │ │ │ ├── FileCommentStandard.xml │ │ │ │ ├── FunctionCommentStandard.xml │ │ │ │ └── InlineCommentStandard.xml │ │ │ ├── ControlStructures │ │ │ │ ├── ControlSignatureStandard.xml │ │ │ │ └── MultiLineConditionStandard.xml │ │ │ ├── Files │ │ │ │ └── IncludingFileStandard.xml │ │ │ ├── Formatting │ │ │ │ └── MultiLineAssignmentStandard.xml │ │ │ ├── Functions │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ ├── FunctionDeclarationStandard.xml │ │ │ │ └── ValidDefaultValueStandard.xml │ │ │ ├── NamingConventions │ │ │ │ ├── ValidClassNameStandard.xml │ │ │ │ ├── ValidFunctionNameStandard.xml │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ └── WhiteSpace │ │ │ │ ├── ObjectOperatorIndentStandard.xml │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ └── ScopeIndentStandard.xml │ │ ├── Sniffs │ │ │ ├── Classes │ │ │ │ └── ClassDeclarationSniff.php │ │ │ ├── Commenting │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ ├── FileCommentSniff.php │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ └── InlineCommentSniff.php │ │ │ ├── ControlStructures │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ └── MultiLineConditionSniff.php │ │ │ ├── Files │ │ │ │ └── IncludingFileSniff.php │ │ │ ├── Formatting │ │ │ │ └── MultiLineAssignmentSniff.php │ │ │ ├── Functions │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ └── ValidDefaultValueSniff.php │ │ │ ├── NamingConventions │ │ │ │ ├── ValidClassNameSniff.php │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ └── ValidVariableNameSniff.php │ │ │ └── WhiteSpace │ │ │ │ ├── ObjectOperatorIndentSniff.php │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ └── ScopeIndentSniff.php │ │ ├── Tests │ │ │ ├── Classes │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ ├── ClassDeclarationUnitTest.1.inc.fixed │ │ │ │ ├── ClassDeclarationUnitTest.2.inc │ │ │ │ └── ClassDeclarationUnitTest.php │ │ │ ├── Commenting │ │ │ │ ├── ClassCommentUnitTest.inc │ │ │ │ ├── ClassCommentUnitTest.php │ │ │ │ ├── FileCommentUnitTest.1.inc │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ ├── FileCommentUnitTest.3.inc │ │ │ │ ├── FileCommentUnitTest.4.inc │ │ │ │ ├── FileCommentUnitTest.php │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ ├── FunctionCommentUnitTest.inc.fixed │ │ │ │ ├── FunctionCommentUnitTest.php │ │ │ │ ├── InlineCommentUnitTest.inc │ │ │ │ ├── InlineCommentUnitTest.inc.fixed │ │ │ │ └── InlineCommentUnitTest.php │ │ │ ├── ControlStructures │ │ │ │ ├── ControlSignatureUnitTest.inc │ │ │ │ ├── ControlSignatureUnitTest.php │ │ │ │ ├── MultiLineConditionUnitTest.inc │ │ │ │ ├── MultiLineConditionUnitTest.inc.fixed │ │ │ │ ├── MultiLineConditionUnitTest.js │ │ │ │ ├── MultiLineConditionUnitTest.js.fixed │ │ │ │ └── MultiLineConditionUnitTest.php │ │ │ ├── Files │ │ │ │ ├── IncludingFileUnitTest.inc │ │ │ │ ├── IncludingFileUnitTest.inc.fixed │ │ │ │ └── IncludingFileUnitTest.php │ │ │ ├── Formatting │ │ │ │ ├── MultiLineAssignmentUnitTest.inc │ │ │ │ └── MultiLineAssignmentUnitTest.php │ │ │ ├── Functions │ │ │ │ ├── FunctionCallSignatureUnitTest.inc │ │ │ │ ├── FunctionCallSignatureUnitTest.inc.fixed │ │ │ │ ├── FunctionCallSignatureUnitTest.js │ │ │ │ ├── FunctionCallSignatureUnitTest.js.fixed │ │ │ │ ├── FunctionCallSignatureUnitTest.php │ │ │ │ ├── FunctionDeclarationUnitTest.1.inc │ │ │ │ ├── FunctionDeclarationUnitTest.1.inc.fixed │ │ │ │ ├── FunctionDeclarationUnitTest.2.inc │ │ │ │ ├── FunctionDeclarationUnitTest.3.inc │ │ │ │ ├── FunctionDeclarationUnitTest.4.inc │ │ │ │ ├── FunctionDeclarationUnitTest.4.inc.fixed │ │ │ │ ├── FunctionDeclarationUnitTest.js │ │ │ │ ├── FunctionDeclarationUnitTest.js.fixed │ │ │ │ ├── FunctionDeclarationUnitTest.php │ │ │ │ ├── ValidDefaultValueUnitTest.1.inc │ │ │ │ ├── ValidDefaultValueUnitTest.2.inc │ │ │ │ └── ValidDefaultValueUnitTest.php │ │ │ ├── NamingConventions │ │ │ │ ├── ValidClassNameUnitTest.inc │ │ │ │ ├── ValidClassNameUnitTest.php │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ └── WhiteSpace │ │ │ │ ├── ObjectOperatorIndentUnitTest.inc │ │ │ │ ├── ObjectOperatorIndentUnitTest.inc.fixed │ │ │ │ ├── ObjectOperatorIndentUnitTest.php │ │ │ │ ├── ScopeClosingBraceUnitTest.inc │ │ │ │ ├── ScopeClosingBraceUnitTest.inc.fixed │ │ │ │ ├── ScopeClosingBraceUnitTest.php │ │ │ │ ├── ScopeIndentUnitTest.inc │ │ │ │ ├── ScopeIndentUnitTest.inc.fixed │ │ │ │ └── ScopeIndentUnitTest.php │ │ └── ruleset.xml │ ├── PSR1 │ │ ├── Docs │ │ │ ├── Classes │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ ├── Files │ │ │ │ └── SideEffectsStandard.xml │ │ │ └── Methods │ │ │ │ └── CamelCapsMethodNameStandard.xml │ │ ├── Sniffs │ │ │ ├── Classes │ │ │ │ └── ClassDeclarationSniff.php │ │ │ ├── Files │ │ │ │ └── SideEffectsSniff.php │ │ │ └── Methods │ │ │ │ └── CamelCapsMethodNameSniff.php │ │ ├── Tests │ │ │ ├── Classes │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ ├── ClassDeclarationUnitTest.2.inc │ │ │ │ ├── ClassDeclarationUnitTest.3.inc │ │ │ │ └── ClassDeclarationUnitTest.php │ │ │ ├── Files │ │ │ │ ├── SideEffectsUnitTest.1.inc │ │ │ │ ├── SideEffectsUnitTest.10.inc │ │ │ │ ├── SideEffectsUnitTest.11.inc │ │ │ │ ├── SideEffectsUnitTest.12.inc │ │ │ │ ├── SideEffectsUnitTest.13.inc │ │ │ │ ├── SideEffectsUnitTest.14.inc │ │ │ │ ├── SideEffectsUnitTest.15.inc │ │ │ │ ├── SideEffectsUnitTest.16.inc │ │ │ │ ├── SideEffectsUnitTest.17.inc │ │ │ │ ├── SideEffectsUnitTest.2.inc │ │ │ │ ├── SideEffectsUnitTest.3.inc │ │ │ │ ├── SideEffectsUnitTest.4.inc │ │ │ │ ├── SideEffectsUnitTest.5.inc │ │ │ │ ├── SideEffectsUnitTest.6.inc │ │ │ │ ├── SideEffectsUnitTest.7.inc │ │ │ │ ├── SideEffectsUnitTest.8.inc │ │ │ │ ├── SideEffectsUnitTest.9.inc │ │ │ │ └── SideEffectsUnitTest.php │ │ │ └── Methods │ │ │ │ ├── CamelCapsMethodNameUnitTest.inc │ │ │ │ └── CamelCapsMethodNameUnitTest.php │ │ └── ruleset.xml │ ├── PSR12 │ │ ├── Docs │ │ │ ├── Classes │ │ │ │ ├── ClassInstantiationStandard.xml │ │ │ │ ├── ClosingBraceStandard.xml │ │ │ │ └── OpeningBraceSpaceStandard.xml │ │ │ ├── ControlStructures │ │ │ │ ├── BooleanOperatorPlacementStandard.xml │ │ │ │ └── ControlStructureSpacingStandard.xml │ │ │ ├── Files │ │ │ │ ├── ImportStatementStandard.xml │ │ │ │ └── OpenTagStandard.xml │ │ │ ├── Functions │ │ │ │ ├── NullableTypeDeclarationStandard.xml │ │ │ │ └── ReturnTypeDeclarationStandard.xml │ │ │ ├── Keywords │ │ │ │ └── ShortFormTypeKeywordsStandard.xml │ │ │ ├── Namespaces │ │ │ │ └── CompoundNamespaceDepthStandard.xml │ │ │ ├── Operators │ │ │ │ └── OperatorSpacingStandard.xml │ │ │ └── Properties │ │ │ │ └── ConstantVisibilityStandard.xml │ │ ├── Sniffs │ │ │ ├── Classes │ │ │ │ ├── AnonClassDeclarationSniff.php │ │ │ │ ├── ClassInstantiationSniff.php │ │ │ │ ├── ClosingBraceSniff.php │ │ │ │ └── OpeningBraceSpaceSniff.php │ │ │ ├── ControlStructures │ │ │ │ ├── BooleanOperatorPlacementSniff.php │ │ │ │ └── ControlStructureSpacingSniff.php │ │ │ ├── Files │ │ │ │ ├── DeclareStatementSniff.php │ │ │ │ ├── FileHeaderSniff.php │ │ │ │ ├── ImportStatementSniff.php │ │ │ │ └── OpenTagSniff.php │ │ │ ├── Functions │ │ │ │ ├── NullableTypeDeclarationSniff.php │ │ │ │ └── ReturnTypeDeclarationSniff.php │ │ │ ├── Keywords │ │ │ │ └── ShortFormTypeKeywordsSniff.php │ │ │ ├── Namespaces │ │ │ │ └── CompoundNamespaceDepthSniff.php │ │ │ ├── Operators │ │ │ │ └── OperatorSpacingSniff.php │ │ │ ├── Properties │ │ │ │ └── ConstantVisibilitySniff.php │ │ │ └── Traits │ │ │ │ └── UseDeclarationSniff.php │ │ ├── Tests │ │ │ ├── Classes │ │ │ │ ├── AnonClassDeclarationUnitTest.inc │ │ │ │ ├── AnonClassDeclarationUnitTest.inc.fixed │ │ │ │ ├── AnonClassDeclarationUnitTest.php │ │ │ │ ├── ClassInstantiationUnitTest.inc │ │ │ │ ├── ClassInstantiationUnitTest.inc.fixed │ │ │ │ ├── ClassInstantiationUnitTest.php │ │ │ │ ├── ClosingBraceUnitTest.inc │ │ │ │ ├── ClosingBraceUnitTest.php │ │ │ │ ├── OpeningBraceSpaceUnitTest.inc │ │ │ │ ├── OpeningBraceSpaceUnitTest.inc.fixed │ │ │ │ └── OpeningBraceSpaceUnitTest.php │ │ │ ├── ControlStructures │ │ │ │ ├── BooleanOperatorPlacementUnitTest.inc │ │ │ │ ├── BooleanOperatorPlacementUnitTest.inc.fixed │ │ │ │ ├── BooleanOperatorPlacementUnitTest.php │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ └── ControlStructureSpacingUnitTest.php │ │ │ ├── Files │ │ │ │ ├── DeclareStatementUnitTest.1.inc │ │ │ │ ├── DeclareStatementUnitTest.1.inc.fixed │ │ │ │ ├── DeclareStatementUnitTest.2.inc │ │ │ │ ├── DeclareStatementUnitTest.php │ │ │ │ ├── FileHeaderUnitTest.1.inc │ │ │ │ ├── FileHeaderUnitTest.10.inc │ │ │ │ ├── FileHeaderUnitTest.10.inc.fixed │ │ │ │ ├── FileHeaderUnitTest.11.inc │ │ │ │ ├── FileHeaderUnitTest.11.inc.fixed │ │ │ │ ├── FileHeaderUnitTest.12.inc │ │ │ │ ├── FileHeaderUnitTest.12.inc.fixed │ │ │ │ ├── FileHeaderUnitTest.13.inc │ │ │ │ ├── FileHeaderUnitTest.14.inc │ │ │ │ ├── FileHeaderUnitTest.15.inc │ │ │ │ ├── FileHeaderUnitTest.16.inc │ │ │ │ ├── FileHeaderUnitTest.17.inc │ │ │ │ ├── FileHeaderUnitTest.18.inc │ │ │ │ ├── FileHeaderUnitTest.19.inc │ │ │ │ ├── FileHeaderUnitTest.2.inc │ │ │ │ ├── FileHeaderUnitTest.2.inc.fixed │ │ │ │ ├── FileHeaderUnitTest.3.inc │ │ │ │ ├── FileHeaderUnitTest.4.inc │ │ │ │ ├── FileHeaderUnitTest.4.inc.fixed │ │ │ │ ├── FileHeaderUnitTest.5.inc │ │ │ │ ├── FileHeaderUnitTest.6.inc │ │ │ │ ├── FileHeaderUnitTest.7.inc │ │ │ │ ├── FileHeaderUnitTest.7.inc.fixed │ │ │ │ ├── FileHeaderUnitTest.8.inc │ │ │ │ ├── FileHeaderUnitTest.9.inc │ │ │ │ ├── FileHeaderUnitTest.php │ │ │ │ ├── ImportStatementUnitTest.inc │ │ │ │ ├── ImportStatementUnitTest.inc.fixed │ │ │ │ ├── ImportStatementUnitTest.php │ │ │ │ ├── OpenTagUnitTest.1.inc │ │ │ │ ├── OpenTagUnitTest.2.inc │ │ │ │ ├── OpenTagUnitTest.2.inc.fixed │ │ │ │ ├── OpenTagUnitTest.3.inc │ │ │ │ ├── OpenTagUnitTest.4.inc │ │ │ │ ├── OpenTagUnitTest.5.inc │ │ │ │ └── OpenTagUnitTest.php │ │ │ ├── Functions │ │ │ │ ├── NullableTypeDeclarationUnitTest.inc │ │ │ │ ├── NullableTypeDeclarationUnitTest.inc.fixed │ │ │ │ ├── NullableTypeDeclarationUnitTest.php │ │ │ │ ├── ReturnTypeDeclarationUnitTest.inc │ │ │ │ ├── ReturnTypeDeclarationUnitTest.inc.fixed │ │ │ │ └── ReturnTypeDeclarationUnitTest.php │ │ │ ├── Keywords │ │ │ │ ├── ShortFormTypeKeywordsUnitTest.inc │ │ │ │ ├── ShortFormTypeKeywordsUnitTest.inc.fixed │ │ │ │ └── ShortFormTypeKeywordsUnitTest.php │ │ │ ├── Namespaces │ │ │ │ ├── CompoundNamespaceDepthUnitTest.inc │ │ │ │ └── CompoundNamespaceDepthUnitTest.php │ │ │ ├── Operators │ │ │ │ ├── OperatorSpacingUnitTest.1.inc │ │ │ │ ├── OperatorSpacingUnitTest.1.inc.fixed │ │ │ │ ├── OperatorSpacingUnitTest.2.inc │ │ │ │ ├── OperatorSpacingUnitTest.3.inc │ │ │ │ └── OperatorSpacingUnitTest.php │ │ │ ├── Properties │ │ │ │ ├── ConstantVisibilityUnitTest.1.inc │ │ │ │ ├── ConstantVisibilityUnitTest.2.inc │ │ │ │ └── ConstantVisibilityUnitTest.php │ │ │ └── Traits │ │ │ │ ├── UseDeclarationUnitTest.inc │ │ │ │ ├── UseDeclarationUnitTest.inc.fixed │ │ │ │ └── UseDeclarationUnitTest.php │ │ └── ruleset.xml │ ├── PSR2 │ │ ├── Docs │ │ │ ├── Classes │ │ │ │ ├── ClassDeclarationStandard.xml │ │ │ │ └── PropertyDeclarationStandard.xml │ │ │ ├── ControlStructures │ │ │ │ ├── ControlStructureSpacingStandard.xml │ │ │ │ ├── ElseIfDeclarationStandard.xml │ │ │ │ └── SwitchDeclarationStandard.xml │ │ │ ├── Files │ │ │ │ ├── ClosingTagStandard.xml │ │ │ │ └── EndFileNewlineStandard.xml │ │ │ ├── Methods │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ ├── FunctionClosingBraceStandard.xml │ │ │ │ └── MethodDeclarationStandard.xml │ │ │ └── Namespaces │ │ │ │ ├── NamespaceDeclarationStandard.xml │ │ │ │ └── UseDeclarationStandard.xml │ │ ├── Sniffs │ │ │ ├── Classes │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ └── PropertyDeclarationSniff.php │ │ │ ├── ControlStructures │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ ├── Files │ │ │ │ ├── ClosingTagSniff.php │ │ │ │ └── EndFileNewlineSniff.php │ │ │ ├── Methods │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ ├── FunctionClosingBraceSniff.php │ │ │ │ └── MethodDeclarationSniff.php │ │ │ └── Namespaces │ │ │ │ ├── NamespaceDeclarationSniff.php │ │ │ │ └── UseDeclarationSniff.php │ │ ├── Tests │ │ │ ├── Classes │ │ │ │ ├── ClassDeclarationUnitTest.inc │ │ │ │ ├── ClassDeclarationUnitTest.inc.fixed │ │ │ │ ├── ClassDeclarationUnitTest.php │ │ │ │ ├── PropertyDeclarationUnitTest.inc │ │ │ │ ├── PropertyDeclarationUnitTest.inc.fixed │ │ │ │ └── PropertyDeclarationUnitTest.php │ │ │ ├── ControlStructures │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ ├── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ ├── ElseIfDeclarationUnitTest.php │ │ │ │ ├── SwitchDeclarationUnitTest.inc │ │ │ │ ├── SwitchDeclarationUnitTest.inc.fixed │ │ │ │ └── SwitchDeclarationUnitTest.php │ │ │ ├── Files │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.php │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ ├── EndFileNewlineUnitTest.1.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.10.inc │ │ │ │ ├── EndFileNewlineUnitTest.10.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.11.inc │ │ │ │ ├── EndFileNewlineUnitTest.11.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.12.inc │ │ │ │ ├── EndFileNewlineUnitTest.12.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.13.inc │ │ │ │ ├── EndFileNewlineUnitTest.13.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.14.inc │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ ├── EndFileNewlineUnitTest.6.inc │ │ │ │ ├── EndFileNewlineUnitTest.6.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.7.inc │ │ │ │ ├── EndFileNewlineUnitTest.7.inc.fixed │ │ │ │ ├── EndFileNewlineUnitTest.8.inc │ │ │ │ ├── EndFileNewlineUnitTest.9.inc │ │ │ │ ├── EndFileNewlineUnitTest.9.inc.fixed │ │ │ │ └── EndFileNewlineUnitTest.php │ │ │ ├── Methods │ │ │ │ ├── FunctionCallSignatureUnitTest.inc │ │ │ │ ├── FunctionCallSignatureUnitTest.inc.fixed │ │ │ │ ├── FunctionCallSignatureUnitTest.php │ │ │ │ ├── FunctionClosingBraceUnitTest.inc │ │ │ │ ├── FunctionClosingBraceUnitTest.inc.fixed │ │ │ │ ├── FunctionClosingBraceUnitTest.php │ │ │ │ ├── MethodDeclarationUnitTest.inc │ │ │ │ ├── MethodDeclarationUnitTest.inc.fixed │ │ │ │ └── MethodDeclarationUnitTest.php │ │ │ └── Namespaces │ │ │ │ ├── NamespaceDeclarationUnitTest.inc │ │ │ │ ├── NamespaceDeclarationUnitTest.inc.fixed │ │ │ │ ├── NamespaceDeclarationUnitTest.php │ │ │ │ ├── UseDeclarationUnitTest.1.inc │ │ │ │ ├── UseDeclarationUnitTest.10.inc │ │ │ │ ├── UseDeclarationUnitTest.10.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.11.inc │ │ │ │ ├── UseDeclarationUnitTest.11.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.12.inc │ │ │ │ ├── UseDeclarationUnitTest.12.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.13.inc │ │ │ │ ├── UseDeclarationUnitTest.13.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.14.inc │ │ │ │ ├── UseDeclarationUnitTest.14.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.15.inc │ │ │ │ ├── UseDeclarationUnitTest.16.inc │ │ │ │ ├── UseDeclarationUnitTest.16.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.17.inc │ │ │ │ ├── UseDeclarationUnitTest.18.inc │ │ │ │ ├── UseDeclarationUnitTest.2.inc │ │ │ │ ├── UseDeclarationUnitTest.2.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.3.inc │ │ │ │ ├── UseDeclarationUnitTest.3.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.4.inc │ │ │ │ ├── UseDeclarationUnitTest.5.inc │ │ │ │ ├── UseDeclarationUnitTest.5.inc.fixed │ │ │ │ ├── UseDeclarationUnitTest.6.inc │ │ │ │ ├── UseDeclarationUnitTest.7.inc │ │ │ │ ├── UseDeclarationUnitTest.8.inc │ │ │ │ ├── UseDeclarationUnitTest.9.inc │ │ │ │ └── UseDeclarationUnitTest.php │ │ └── ruleset.xml │ ├── Squiz │ │ ├── Docs │ │ │ ├── Arrays │ │ │ │ ├── ArrayBracketSpacingStandard.xml │ │ │ │ └── ArrayDeclarationStandard.xml │ │ │ ├── Classes │ │ │ │ ├── ClassFileNameStandard.xml │ │ │ │ ├── LowercaseClassKeywordsStandard.xml │ │ │ │ ├── SelfMemberReferenceStandard.xml │ │ │ │ └── ValidClassNameStandard.xml │ │ │ ├── Commenting │ │ │ │ ├── BlockCommentStandard.xml │ │ │ │ ├── DocCommentAlignmentStandard.xml │ │ │ │ └── FunctionCommentThrowTagStandard.xml │ │ │ ├── ControlStructures │ │ │ │ ├── ForEachLoopDeclarationStandard.xml │ │ │ │ ├── ForLoopDeclarationStandard.xml │ │ │ │ └── LowercaseDeclarationStandard.xml │ │ │ ├── Functions │ │ │ │ └── LowercaseFunctionKeywordsStandard.xml │ │ │ ├── PHP │ │ │ │ └── HeredocStandard.xml │ │ │ ├── Scope │ │ │ │ └── StaticThisUsageStandard.xml │ │ │ ├── Strings │ │ │ │ └── EchoedStringsStandard.xml │ │ │ └── WhiteSpace │ │ │ │ ├── CastSpacingStandard.xml │ │ │ │ ├── FunctionClosingBraceSpaceStandard.xml │ │ │ │ ├── FunctionOpeningBraceSpaceStandard.xml │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ ├── MemberVarSpacingStandard.xml │ │ │ │ ├── ObjectOperatorSpacingStandard.xml │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ ├── ScopeKeywordSpacingStandard.xml │ │ │ │ ├── SemicolonSpacingStandard.xml │ │ │ │ └── SuperfluousWhitespaceStandard.xml │ │ ├── Sniffs │ │ │ ├── Arrays │ │ │ │ ├── ArrayBracketSpacingSniff.php │ │ │ │ └── ArrayDeclarationSniff.php │ │ │ ├── CSS │ │ │ │ ├── ClassDefinitionClosingBraceSpaceSniff.php │ │ │ │ ├── ClassDefinitionNameSpacingSniff.php │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceSniff.php │ │ │ │ ├── ColonSpacingSniff.php │ │ │ │ ├── ColourDefinitionSniff.php │ │ │ │ ├── DisallowMultipleStyleDefinitionsSniff.php │ │ │ │ ├── DuplicateClassDefinitionSniff.php │ │ │ │ ├── DuplicateStyleDefinitionSniff.php │ │ │ │ ├── EmptyClassDefinitionSniff.php │ │ │ │ ├── EmptyStyleDefinitionSniff.php │ │ │ │ ├── ForbiddenStylesSniff.php │ │ │ │ ├── IndentationSniff.php │ │ │ │ ├── LowercaseStyleDefinitionSniff.php │ │ │ │ ├── MissingColonSniff.php │ │ │ │ ├── NamedColoursSniff.php │ │ │ │ ├── OpacitySniff.php │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ └── ShorthandSizeSniff.php │ │ │ ├── Classes │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ ├── ClassFileNameSniff.php │ │ │ │ ├── DuplicatePropertySniff.php │ │ │ │ ├── LowercaseClassKeywordsSniff.php │ │ │ │ ├── SelfMemberReferenceSniff.php │ │ │ │ └── ValidClassNameSniff.php │ │ │ ├── Commenting │ │ │ │ ├── BlockCommentSniff.php │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ ├── ClosingDeclarationCommentSniff.php │ │ │ │ ├── DocCommentAlignmentSniff.php │ │ │ │ ├── EmptyCatchCommentSniff.php │ │ │ │ ├── FileCommentSniff.php │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ ├── FunctionCommentThrowTagSniff.php │ │ │ │ ├── InlineCommentSniff.php │ │ │ │ ├── LongConditionClosingCommentSniff.php │ │ │ │ ├── PostStatementCommentSniff.php │ │ │ │ └── VariableCommentSniff.php │ │ │ ├── ControlStructures │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ ├── ForEachLoopDeclarationSniff.php │ │ │ │ ├── ForLoopDeclarationSniff.php │ │ │ │ ├── InlineIfDeclarationSniff.php │ │ │ │ ├── LowercaseDeclarationSniff.php │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ ├── Debug │ │ │ │ ├── JSLintSniff.php │ │ │ │ └── JavaScriptLintSniff.php │ │ │ ├── Files │ │ │ │ └── FileExtensionSniff.php │ │ │ ├── Formatting │ │ │ │ └── OperatorBracketSniff.php │ │ │ ├── Functions │ │ │ │ ├── FunctionDeclarationArgumentSpacingSniff.php │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ ├── FunctionDuplicateArgumentSniff.php │ │ │ │ ├── GlobalFunctionSniff.php │ │ │ │ ├── LowercaseFunctionKeywordsSniff.php │ │ │ │ └── MultiLineFunctionDeclarationSniff.php │ │ │ ├── NamingConventions │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ └── ValidVariableNameSniff.php │ │ │ ├── Objects │ │ │ │ ├── DisallowObjectStringIndexSniff.php │ │ │ │ ├── ObjectInstantiationSniff.php │ │ │ │ └── ObjectMemberCommaSniff.php │ │ │ ├── Operators │ │ │ │ ├── ComparisonOperatorUsageSniff.php │ │ │ │ ├── IncrementDecrementUsageSniff.php │ │ │ │ └── ValidLogicalOperatorsSniff.php │ │ │ ├── PHP │ │ │ │ ├── CommentedOutCodeSniff.php │ │ │ │ ├── DisallowBooleanStatementSniff.php │ │ │ │ ├── DisallowComparisonAssignmentSniff.php │ │ │ │ ├── DisallowInlineIfSniff.php │ │ │ │ ├── DisallowMultipleAssignmentsSniff.php │ │ │ │ ├── DisallowSizeFunctionsInLoopsSniff.php │ │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ │ ├── EmbeddedPhpSniff.php │ │ │ │ ├── EvalSniff.php │ │ │ │ ├── GlobalKeywordSniff.php │ │ │ │ ├── HeredocSniff.php │ │ │ │ ├── InnerFunctionsSniff.php │ │ │ │ ├── LowercasePHPFunctionsSniff.php │ │ │ │ └── NonExecutableCodeSniff.php │ │ │ ├── Scope │ │ │ │ ├── MemberVarScopeSniff.php │ │ │ │ ├── MethodScopeSniff.php │ │ │ │ └── StaticThisUsageSniff.php │ │ │ ├── Strings │ │ │ │ ├── ConcatenationSpacingSniff.php │ │ │ │ ├── DoubleQuoteUsageSniff.php │ │ │ │ └── EchoedStringsSniff.php │ │ │ └── WhiteSpace │ │ │ │ ├── CastSpacingSniff.php │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ ├── FunctionClosingBraceSpaceSniff.php │ │ │ │ ├── FunctionOpeningBraceSpaceSniff.php │ │ │ │ ├── FunctionSpacingSniff.php │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ ├── LogicalOperatorSpacingSniff.php │ │ │ │ ├── MemberVarSpacingSniff.php │ │ │ │ ├── ObjectOperatorSpacingSniff.php │ │ │ │ ├── OperatorSpacingSniff.php │ │ │ │ ├── PropertyLabelSpacingSniff.php │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ ├── ScopeKeywordSpacingSniff.php │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ └── SuperfluousWhitespaceSniff.php │ │ ├── Tests │ │ │ ├── Arrays │ │ │ │ ├── ArrayBracketSpacingUnitTest.inc │ │ │ │ ├── ArrayBracketSpacingUnitTest.inc.fixed │ │ │ │ ├── ArrayBracketSpacingUnitTest.php │ │ │ │ ├── ArrayDeclarationUnitTest.1.inc │ │ │ │ ├── ArrayDeclarationUnitTest.1.inc.fixed │ │ │ │ ├── ArrayDeclarationUnitTest.2.inc │ │ │ │ ├── ArrayDeclarationUnitTest.2.inc.fixed │ │ │ │ ├── ArrayDeclarationUnitTest.3.inc │ │ │ │ ├── ArrayDeclarationUnitTest.4.inc │ │ │ │ ├── ArrayDeclarationUnitTest.4.inc.fixed │ │ │ │ └── ArrayDeclarationUnitTest.php │ │ │ ├── CSS │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.css │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.css.fixed │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.php │ │ │ │ ├── ClassDefinitionNameSpacingUnitTest.css │ │ │ │ ├── ClassDefinitionNameSpacingUnitTest.php │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.css │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.css.fixed │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.php │ │ │ │ ├── ColonSpacingUnitTest.css │ │ │ │ ├── ColonSpacingUnitTest.css.fixed │ │ │ │ ├── ColonSpacingUnitTest.php │ │ │ │ ├── ColourDefinitionUnitTest.css │ │ │ │ ├── ColourDefinitionUnitTest.css.fixed │ │ │ │ ├── ColourDefinitionUnitTest.php │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.css │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.css.fixed │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.php │ │ │ │ ├── DuplicateClassDefinitionUnitTest.css │ │ │ │ ├── DuplicateClassDefinitionUnitTest.php │ │ │ │ ├── DuplicateStyleDefinitionUnitTest.css │ │ │ │ ├── DuplicateStyleDefinitionUnitTest.php │ │ │ │ ├── EmptyClassDefinitionUnitTest.css │ │ │ │ ├── EmptyClassDefinitionUnitTest.php │ │ │ │ ├── EmptyStyleDefinitionUnitTest.css │ │ │ │ ├── EmptyStyleDefinitionUnitTest.php │ │ │ │ ├── ForbiddenStylesUnitTest.css │ │ │ │ ├── ForbiddenStylesUnitTest.css.fixed │ │ │ │ ├── ForbiddenStylesUnitTest.php │ │ │ │ ├── IndentationUnitTest.1.css │ │ │ │ ├── IndentationUnitTest.1.css.fixed │ │ │ │ ├── IndentationUnitTest.2.css │ │ │ │ ├── IndentationUnitTest.php │ │ │ │ ├── LowercaseStyleDefinitionUnitTest.css │ │ │ │ ├── LowercaseStyleDefinitionUnitTest.php │ │ │ │ ├── MissingColonUnitTest.css │ │ │ │ ├── MissingColonUnitTest.php │ │ │ │ ├── NamedColoursUnitTest.css │ │ │ │ ├── NamedColoursUnitTest.php │ │ │ │ ├── OpacityUnitTest.css │ │ │ │ ├── OpacityUnitTest.css.fixed │ │ │ │ ├── OpacityUnitTest.php │ │ │ │ ├── SemicolonSpacingUnitTest.css │ │ │ │ ├── SemicolonSpacingUnitTest.css.fixed │ │ │ │ ├── SemicolonSpacingUnitTest.php │ │ │ │ ├── ShorthandSizeUnitTest.1.css │ │ │ │ ├── ShorthandSizeUnitTest.1.css.fixed │ │ │ │ ├── ShorthandSizeUnitTest.2.css │ │ │ │ └── ShorthandSizeUnitTest.php │ │ │ ├── Classes │ │ │ │ ├── ClassDeclarationUnitTest.inc │ │ │ │ ├── ClassDeclarationUnitTest.inc.fixed │ │ │ │ ├── ClassDeclarationUnitTest.php │ │ │ │ ├── ClassFileName Spaces In FilenameUnitTest.inc │ │ │ │ ├── ClassFileName-Dashes-In-FilenameUnitTest.inc │ │ │ │ ├── ClassFileNameLiveCodingFailUnitTest.inc │ │ │ │ ├── ClassFileNameLiveCodingPassUnitTest.inc │ │ │ │ ├── ClassFileNameParseError1UnitTest.inc │ │ │ │ ├── ClassFileNameUnitTest.inc │ │ │ │ ├── ClassFileNameUnitTest.php │ │ │ │ ├── DuplicatePropertyUnitTest.js │ │ │ │ ├── DuplicatePropertyUnitTest.php │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc.fixed │ │ │ │ ├── LowercaseClassKeywordsUnitTest.php │ │ │ │ ├── SelfMemberReferenceUnitTest.inc │ │ │ │ ├── SelfMemberReferenceUnitTest.inc.fixed │ │ │ │ ├── SelfMemberReferenceUnitTest.php │ │ │ │ ├── ValidClassNameUnitTest.inc │ │ │ │ └── ValidClassNameUnitTest.php │ │ │ ├── Commenting │ │ │ │ ├── BlockCommentUnitTest.inc │ │ │ │ ├── BlockCommentUnitTest.inc.fixed │ │ │ │ ├── BlockCommentUnitTest.php │ │ │ │ ├── ClassCommentUnitTest.inc │ │ │ │ ├── ClassCommentUnitTest.php │ │ │ │ ├── ClosingDeclarationCommentUnitTest.1.inc │ │ │ │ ├── ClosingDeclarationCommentUnitTest.1.inc.fixed │ │ │ │ ├── ClosingDeclarationCommentUnitTest.2.inc │ │ │ │ ├── ClosingDeclarationCommentUnitTest.3.inc │ │ │ │ ├── ClosingDeclarationCommentUnitTest.4.inc │ │ │ │ ├── ClosingDeclarationCommentUnitTest.4.inc.fixed │ │ │ │ ├── ClosingDeclarationCommentUnitTest.5.inc │ │ │ │ ├── ClosingDeclarationCommentUnitTest.5.inc.fixed │ │ │ │ ├── ClosingDeclarationCommentUnitTest.php │ │ │ │ ├── DocCommentAlignmentUnitTest.inc │ │ │ │ ├── DocCommentAlignmentUnitTest.inc.fixed │ │ │ │ ├── DocCommentAlignmentUnitTest.js │ │ │ │ ├── DocCommentAlignmentUnitTest.js.fixed │ │ │ │ ├── DocCommentAlignmentUnitTest.php │ │ │ │ ├── EmptyCatchCommentUnitTest.inc │ │ │ │ ├── EmptyCatchCommentUnitTest.php │ │ │ │ ├── FileCommentUnitTest.1.inc │ │ │ │ ├── FileCommentUnitTest.1.inc.fixed │ │ │ │ ├── FileCommentUnitTest.1.js │ │ │ │ ├── FileCommentUnitTest.1.js.fixed │ │ │ │ ├── FileCommentUnitTest.10.inc │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ ├── FileCommentUnitTest.2.js │ │ │ │ ├── FileCommentUnitTest.3.inc │ │ │ │ ├── FileCommentUnitTest.4.inc │ │ │ │ ├── FileCommentUnitTest.5.inc │ │ │ │ ├── FileCommentUnitTest.6.inc │ │ │ │ ├── FileCommentUnitTest.7.inc │ │ │ │ ├── FileCommentUnitTest.8.inc │ │ │ │ ├── FileCommentUnitTest.9.inc │ │ │ │ ├── FileCommentUnitTest.php │ │ │ │ ├── FunctionCommentThrowTagUnitTest.inc │ │ │ │ ├── FunctionCommentThrowTagUnitTest.php │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ ├── FunctionCommentUnitTest.inc.fixed │ │ │ │ ├── FunctionCommentUnitTest.php │ │ │ │ ├── InlineCommentUnitTest.inc │ │ │ │ ├── InlineCommentUnitTest.inc.fixed │ │ │ │ ├── InlineCommentUnitTest.js │ │ │ │ ├── InlineCommentUnitTest.js.fixed │ │ │ │ ├── InlineCommentUnitTest.php │ │ │ │ ├── LongConditionClosingCommentUnitTest.inc │ │ │ │ ├── LongConditionClosingCommentUnitTest.inc.fixed │ │ │ │ ├── LongConditionClosingCommentUnitTest.js │ │ │ │ ├── LongConditionClosingCommentUnitTest.js.fixed │ │ │ │ ├── LongConditionClosingCommentUnitTest.php │ │ │ │ ├── PostStatementCommentUnitTest.1.js │ │ │ │ ├── PostStatementCommentUnitTest.1.js.fixed │ │ │ │ ├── PostStatementCommentUnitTest.2.js │ │ │ │ ├── PostStatementCommentUnitTest.inc │ │ │ │ ├── PostStatementCommentUnitTest.inc.fixed │ │ │ │ ├── PostStatementCommentUnitTest.php │ │ │ │ ├── VariableCommentUnitTest.inc │ │ │ │ ├── VariableCommentUnitTest.inc.fixed │ │ │ │ └── VariableCommentUnitTest.php │ │ │ ├── ControlStructures │ │ │ │ ├── ControlSignatureUnitTest.1.inc │ │ │ │ ├── ControlSignatureUnitTest.1.inc.fixed │ │ │ │ ├── ControlSignatureUnitTest.2.inc │ │ │ │ ├── ControlSignatureUnitTest.js │ │ │ │ ├── ControlSignatureUnitTest.js.fixed │ │ │ │ ├── ControlSignatureUnitTest.php │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ ├── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ ├── ElseIfDeclarationUnitTest.php │ │ │ │ ├── ForEachLoopDeclarationUnitTest.inc │ │ │ │ ├── ForEachLoopDeclarationUnitTest.inc.fixed │ │ │ │ ├── ForEachLoopDeclarationUnitTest.php │ │ │ │ ├── ForLoopDeclarationUnitTest.1.inc │ │ │ │ ├── ForLoopDeclarationUnitTest.1.inc.fixed │ │ │ │ ├── ForLoopDeclarationUnitTest.1.js │ │ │ │ ├── ForLoopDeclarationUnitTest.1.js.fixed │ │ │ │ ├── ForLoopDeclarationUnitTest.2.inc │ │ │ │ ├── ForLoopDeclarationUnitTest.2.js │ │ │ │ ├── ForLoopDeclarationUnitTest.3.inc │ │ │ │ ├── ForLoopDeclarationUnitTest.php │ │ │ │ ├── InlineIfDeclarationUnitTest.inc │ │ │ │ ├── InlineIfDeclarationUnitTest.inc.fixed │ │ │ │ ├── InlineIfDeclarationUnitTest.php │ │ │ │ ├── LowercaseDeclarationUnitTest.inc │ │ │ │ ├── LowercaseDeclarationUnitTest.inc.fixed │ │ │ │ ├── LowercaseDeclarationUnitTest.php │ │ │ │ ├── SwitchDeclarationUnitTest.inc │ │ │ │ ├── SwitchDeclarationUnitTest.inc.fixed │ │ │ │ ├── SwitchDeclarationUnitTest.js │ │ │ │ └── SwitchDeclarationUnitTest.php │ │ │ ├── Debug │ │ │ │ ├── JSLintUnitTest.js │ │ │ │ ├── JSLintUnitTest.php │ │ │ │ ├── JavaScriptLintUnitTest.js │ │ │ │ └── JavaScriptLintUnitTest.php │ │ │ ├── Files │ │ │ │ ├── FileExtensionUnitTest.1.inc │ │ │ │ ├── FileExtensionUnitTest.2.inc │ │ │ │ ├── FileExtensionUnitTest.3.inc │ │ │ │ ├── FileExtensionUnitTest.4.inc │ │ │ │ ├── FileExtensionUnitTest.5.inc │ │ │ │ └── FileExtensionUnitTest.php │ │ │ ├── Formatting │ │ │ │ ├── OperatorBracketUnitTest.1.inc │ │ │ │ ├── OperatorBracketUnitTest.1.inc.fixed │ │ │ │ ├── OperatorBracketUnitTest.2.inc │ │ │ │ ├── OperatorBracketUnitTest.3.inc │ │ │ │ ├── OperatorBracketUnitTest.js │ │ │ │ ├── OperatorBracketUnitTest.js.fixed │ │ │ │ └── OperatorBracketUnitTest.php │ │ │ ├── Functions │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.1.inc │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.1.inc.fixed │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.2.inc │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.3.inc │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.4.inc │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.5.inc │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.6.inc │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.php │ │ │ │ ├── FunctionDeclarationUnitTest.1.inc │ │ │ │ ├── FunctionDeclarationUnitTest.2.inc │ │ │ │ ├── FunctionDeclarationUnitTest.3.inc │ │ │ │ ├── FunctionDeclarationUnitTest.php │ │ │ │ ├── FunctionDuplicateArgumentUnitTest.inc │ │ │ │ ├── FunctionDuplicateArgumentUnitTest.php │ │ │ │ ├── GlobalFunctionUnitTest.inc │ │ │ │ ├── GlobalFunctionUnitTest.php │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.inc │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.inc.fixed │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.php │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.inc │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.inc.fixed │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.js │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.js.fixed │ │ │ │ └── MultiLineFunctionDeclarationUnitTest.php │ │ │ ├── NamingConventions │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ ├── Objects │ │ │ │ ├── DisallowObjectStringIndexUnitTest.js │ │ │ │ ├── DisallowObjectStringIndexUnitTest.php │ │ │ │ ├── ObjectInstantiationUnitTest.inc │ │ │ │ ├── ObjectInstantiationUnitTest.php │ │ │ │ ├── ObjectMemberCommaUnitTest.js │ │ │ │ ├── ObjectMemberCommaUnitTest.js.fixed │ │ │ │ └── ObjectMemberCommaUnitTest.php │ │ │ ├── Operators │ │ │ │ ├── ComparisonOperatorUsageUnitTest.inc │ │ │ │ ├── ComparisonOperatorUsageUnitTest.js │ │ │ │ ├── ComparisonOperatorUsageUnitTest.php │ │ │ │ ├── IncrementDecrementUsageUnitTest.inc │ │ │ │ ├── IncrementDecrementUsageUnitTest.php │ │ │ │ ├── ValidLogicalOperatorsUnitTest.inc │ │ │ │ └── ValidLogicalOperatorsUnitTest.php │ │ │ ├── PHP │ │ │ │ ├── CommentedOutCodeUnitTest.css │ │ │ │ ├── CommentedOutCodeUnitTest.inc │ │ │ │ ├── CommentedOutCodeUnitTest.php │ │ │ │ ├── DisallowBooleanStatementUnitTest.inc │ │ │ │ ├── DisallowBooleanStatementUnitTest.php │ │ │ │ ├── DisallowComparisonAssignmentUnitTest.inc │ │ │ │ ├── DisallowComparisonAssignmentUnitTest.php │ │ │ │ ├── DisallowInlineIfUnitTest.inc │ │ │ │ ├── DisallowInlineIfUnitTest.js │ │ │ │ ├── DisallowInlineIfUnitTest.php │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.1.inc │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.2.inc │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.php │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.inc │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.js │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.php │ │ │ │ ├── DiscouragedFunctionsUnitTest.inc │ │ │ │ ├── DiscouragedFunctionsUnitTest.php │ │ │ │ ├── EmbeddedPhpUnitTest.1.inc │ │ │ │ ├── EmbeddedPhpUnitTest.1.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.10.inc │ │ │ │ ├── EmbeddedPhpUnitTest.11.inc │ │ │ │ ├── EmbeddedPhpUnitTest.12.inc │ │ │ │ ├── EmbeddedPhpUnitTest.12.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.13.inc │ │ │ │ ├── EmbeddedPhpUnitTest.13.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.14.inc │ │ │ │ ├── EmbeddedPhpUnitTest.15.inc │ │ │ │ ├── EmbeddedPhpUnitTest.16.inc │ │ │ │ ├── EmbeddedPhpUnitTest.17.inc │ │ │ │ ├── EmbeddedPhpUnitTest.18.inc │ │ │ │ ├── EmbeddedPhpUnitTest.18.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.19.inc │ │ │ │ ├── EmbeddedPhpUnitTest.19.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.2.inc │ │ │ │ ├── EmbeddedPhpUnitTest.2.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.20.inc │ │ │ │ ├── EmbeddedPhpUnitTest.20.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.21.inc │ │ │ │ ├── EmbeddedPhpUnitTest.21.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.22.inc │ │ │ │ ├── EmbeddedPhpUnitTest.22.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.23.inc │ │ │ │ ├── EmbeddedPhpUnitTest.24.inc │ │ │ │ ├── EmbeddedPhpUnitTest.24.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.25.inc │ │ │ │ ├── EmbeddedPhpUnitTest.25.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.3.inc │ │ │ │ ├── EmbeddedPhpUnitTest.3.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.4.inc │ │ │ │ ├── EmbeddedPhpUnitTest.4.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.5.inc │ │ │ │ ├── EmbeddedPhpUnitTest.5.inc.fixed │ │ │ │ ├── EmbeddedPhpUnitTest.6.inc │ │ │ │ ├── EmbeddedPhpUnitTest.7.inc │ │ │ │ ├── EmbeddedPhpUnitTest.8.inc │ │ │ │ ├── EmbeddedPhpUnitTest.9.inc │ │ │ │ ├── EmbeddedPhpUnitTest.php │ │ │ │ ├── EvalUnitTest.inc │ │ │ │ ├── EvalUnitTest.php │ │ │ │ ├── GlobalKeywordUnitTest.inc │ │ │ │ ├── GlobalKeywordUnitTest.php │ │ │ │ ├── HeredocUnitTest.1.inc │ │ │ │ ├── HeredocUnitTest.2.inc │ │ │ │ ├── HeredocUnitTest.php │ │ │ │ ├── InnerFunctionsUnitTest.inc │ │ │ │ ├── InnerFunctionsUnitTest.php │ │ │ │ ├── LowercasePHPFunctionsUnitTest.inc │ │ │ │ ├── LowercasePHPFunctionsUnitTest.inc.fixed │ │ │ │ ├── LowercasePHPFunctionsUnitTest.php │ │ │ │ ├── NonExecutableCodeUnitTest.1.inc │ │ │ │ ├── NonExecutableCodeUnitTest.2.inc │ │ │ │ ├── NonExecutableCodeUnitTest.3.inc │ │ │ │ ├── NonExecutableCodeUnitTest.4.inc │ │ │ │ └── NonExecutableCodeUnitTest.php │ │ │ ├── Scope │ │ │ │ ├── MemberVarScopeUnitTest.inc │ │ │ │ ├── MemberVarScopeUnitTest.php │ │ │ │ ├── MethodScopeUnitTest.inc │ │ │ │ ├── MethodScopeUnitTest.php │ │ │ │ ├── StaticThisUsageUnitTest.inc │ │ │ │ └── StaticThisUsageUnitTest.php │ │ │ ├── Strings │ │ │ │ ├── ConcatenationSpacingUnitTest.inc │ │ │ │ ├── ConcatenationSpacingUnitTest.inc.fixed │ │ │ │ ├── ConcatenationSpacingUnitTest.php │ │ │ │ ├── DoubleQuoteUsageUnitTest.inc │ │ │ │ ├── DoubleQuoteUsageUnitTest.inc.fixed │ │ │ │ ├── DoubleQuoteUsageUnitTest.php │ │ │ │ ├── EchoedStringsUnitTest.inc │ │ │ │ ├── EchoedStringsUnitTest.inc.fixed │ │ │ │ └── EchoedStringsUnitTest.php │ │ │ └── WhiteSpace │ │ │ │ ├── CastSpacingUnitTest.inc │ │ │ │ ├── CastSpacingUnitTest.inc.fixed │ │ │ │ ├── CastSpacingUnitTest.php │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ ├── ControlStructureSpacingUnitTest.js │ │ │ │ ├── ControlStructureSpacingUnitTest.js.fixed │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.inc │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.inc.fixed │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.js │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.js.fixed │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.php │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.inc │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.inc.fixed │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.js │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.js.fixed │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.php │ │ │ │ ├── FunctionSpacingUnitTest.1.inc │ │ │ │ ├── FunctionSpacingUnitTest.1.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.2.inc │ │ │ │ ├── FunctionSpacingUnitTest.2.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.3.inc │ │ │ │ ├── FunctionSpacingUnitTest.3.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.4.inc │ │ │ │ ├── FunctionSpacingUnitTest.5.inc │ │ │ │ ├── FunctionSpacingUnitTest.5.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.6.inc │ │ │ │ ├── FunctionSpacingUnitTest.6.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.7.inc │ │ │ │ ├── FunctionSpacingUnitTest.php │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc.fixed │ │ │ │ ├── LanguageConstructSpacingUnitTest.php │ │ │ │ ├── LogicalOperatorSpacingUnitTest.inc │ │ │ │ ├── LogicalOperatorSpacingUnitTest.inc.fixed │ │ │ │ ├── LogicalOperatorSpacingUnitTest.js │ │ │ │ ├── LogicalOperatorSpacingUnitTest.js.fixed │ │ │ │ ├── LogicalOperatorSpacingUnitTest.php │ │ │ │ ├── MemberVarSpacingUnitTest.1.inc │ │ │ │ ├── MemberVarSpacingUnitTest.1.inc.fixed │ │ │ │ ├── MemberVarSpacingUnitTest.2.inc │ │ │ │ ├── MemberVarSpacingUnitTest.3.inc │ │ │ │ ├── MemberVarSpacingUnitTest.php │ │ │ │ ├── ObjectOperatorSpacingUnitTest.inc │ │ │ │ ├── ObjectOperatorSpacingUnitTest.inc.fixed │ │ │ │ ├── ObjectOperatorSpacingUnitTest.php │ │ │ │ ├── OperatorSpacingUnitTest.1.inc │ │ │ │ ├── OperatorSpacingUnitTest.1.inc.fixed │ │ │ │ ├── OperatorSpacingUnitTest.2.inc │ │ │ │ ├── OperatorSpacingUnitTest.3.inc │ │ │ │ ├── OperatorSpacingUnitTest.js │ │ │ │ ├── OperatorSpacingUnitTest.js.fixed │ │ │ │ ├── OperatorSpacingUnitTest.php │ │ │ │ ├── PropertyLabelSpacingUnitTest.js │ │ │ │ ├── PropertyLabelSpacingUnitTest.js.fixed │ │ │ │ ├── PropertyLabelSpacingUnitTest.php │ │ │ │ ├── ScopeClosingBraceUnitTest.inc │ │ │ │ ├── ScopeClosingBraceUnitTest.inc.fixed │ │ │ │ ├── ScopeClosingBraceUnitTest.php │ │ │ │ ├── ScopeKeywordSpacingUnitTest.1.inc │ │ │ │ ├── ScopeKeywordSpacingUnitTest.1.inc.fixed │ │ │ │ ├── ScopeKeywordSpacingUnitTest.2.inc │ │ │ │ ├── ScopeKeywordSpacingUnitTest.3.inc │ │ │ │ ├── ScopeKeywordSpacingUnitTest.3.inc.fixed │ │ │ │ ├── ScopeKeywordSpacingUnitTest.4.inc │ │ │ │ ├── ScopeKeywordSpacingUnitTest.php │ │ │ │ ├── SemicolonSpacingUnitTest.inc │ │ │ │ ├── SemicolonSpacingUnitTest.inc.fixed │ │ │ │ ├── SemicolonSpacingUnitTest.js │ │ │ │ ├── SemicolonSpacingUnitTest.js.fixed │ │ │ │ ├── SemicolonSpacingUnitTest.php │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.css │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.css.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.inc │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.inc.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.js │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.js.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc.fixed │ │ │ │ └── SuperfluousWhitespaceUnitTest.php │ │ └── ruleset.xml │ └── Zend │ │ ├── Docs │ │ ├── Debug │ │ │ └── CodeAnalyzerStandard.xml │ │ ├── Files │ │ │ └── ClosingTagStandard.xml │ │ └── NamingConventions │ │ │ └── ValidVariableNameStandard.xml │ │ ├── Sniffs │ │ ├── Debug │ │ │ └── CodeAnalyzerSniff.php │ │ ├── Files │ │ │ └── ClosingTagSniff.php │ │ └── NamingConventions │ │ │ └── ValidVariableNameSniff.php │ │ ├── Tests │ │ ├── Debug │ │ │ ├── CodeAnalyzerUnitTest.inc │ │ │ └── CodeAnalyzerUnitTest.php │ │ ├── Files │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ ├── ClosingTagUnitTest.3.inc.fixed │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ └── ClosingTagUnitTest.php │ │ └── NamingConventions │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ └── ValidVariableNameUnitTest.php │ │ └── ruleset.xml ├── Tokenizers │ ├── CSS.php │ ├── Comment.php │ ├── JS.php │ ├── PHP.php │ └── Tokenizer.php └── Util │ ├── Cache.php │ ├── Common.php │ ├── Help.php │ ├── MessageCollector.php │ ├── Standards.php │ ├── Timing.php │ └── Tokens.php └── tests ├── AllTests.php ├── ConfigDouble.php ├── Core ├── AbstractMethodUnitTest.php ├── AllTests.php ├── Autoloader │ ├── DetermineLoadedClassTest.php │ └── TestFiles │ │ ├── A.inc │ │ ├── B.inc │ │ ├── C.inc │ │ └── Sub │ │ └── C.inc ├── Config │ ├── AbstractRealConfigTestCase.php │ ├── ExtensionsArgTest.php │ ├── GeneratorArgTest.php │ ├── ReportArgsTest.php │ ├── ReportWidthTest.php │ └── SniffsExcludeArgsTest.php ├── ErrorSuppressionTest.php ├── Files │ └── File │ │ ├── FindEndOfStatementTest.inc │ │ ├── FindEndOfStatementTest.php │ │ ├── FindExtendedClassNameTest.inc │ │ ├── FindExtendedClassNameTest.php │ │ ├── FindImplementedInterfaceNamesTest.inc │ │ ├── FindImplementedInterfaceNamesTest.php │ │ ├── FindStartOfStatementTest.inc │ │ ├── FindStartOfStatementTest.php │ │ ├── GetClassPropertiesTest.inc │ │ ├── GetClassPropertiesTest.php │ │ ├── GetConditionTest.inc │ │ ├── GetConditionTest.php │ │ ├── GetDeclarationNameJSTest.js │ │ ├── GetDeclarationNameJSTest.php │ │ ├── GetDeclarationNameParseError1Test.inc │ │ ├── GetDeclarationNameParseError1Test.php │ │ ├── GetDeclarationNameParseError2Test.inc │ │ ├── GetDeclarationNameParseError2Test.php │ │ ├── GetDeclarationNameTest.inc │ │ ├── GetDeclarationNameTest.php │ │ ├── GetMemberPropertiesTest.inc │ │ ├── GetMemberPropertiesTest.php │ │ ├── GetMethodParametersParseError1Test.inc │ │ ├── GetMethodParametersParseError1Test.php │ │ ├── GetMethodParametersParseError2Test.inc │ │ ├── GetMethodParametersParseError2Test.php │ │ ├── GetMethodParametersTest.inc │ │ ├── GetMethodParametersTest.php │ │ ├── GetMethodPropertiesTest.inc │ │ ├── GetMethodPropertiesTest.php │ │ ├── GetTokensAsStringTest.inc │ │ ├── GetTokensAsStringTest.php │ │ ├── IsReferenceTest.inc │ │ └── IsReferenceTest.php ├── Filters │ ├── AbstractFilterTestCase.php │ ├── Filter │ │ ├── AcceptTest.php │ │ └── AcceptTest.xml │ ├── GitModifiedTest.php │ └── GitStagedTest.php ├── Fixer │ ├── FixFileReturnValueAllGoodTest.xml │ ├── FixFileReturnValueConflictTest.xml │ ├── FixFileReturnValueNotEnoughLoopsTest.xml │ ├── FixFileReturnValueTest.php │ ├── Fixtures │ │ ├── GenerateDiffTest-BlankLinesAtEnd.diff │ │ ├── GenerateDiffTest-BlankLinesAtEnd.inc │ │ ├── GenerateDiffTest-BlankLinesAtStart.diff │ │ ├── GenerateDiffTest-BlankLinesAtStart.inc │ │ ├── GenerateDiffTest-LineAdded.diff │ │ ├── GenerateDiffTest-LineAdded.inc │ │ ├── GenerateDiffTest-LineRemoved.diff │ │ ├── GenerateDiffTest-LineRemoved.inc │ │ ├── GenerateDiffTest-NoDiff.diff │ │ ├── GenerateDiffTest-NoDiff.inc │ │ ├── GenerateDiffTest-NoTrailingWhitespace.diff │ │ ├── GenerateDiffTest-NoTrailingWhitespace.inc │ │ ├── GenerateDiffTest-TabsToSpaces.diff │ │ ├── GenerateDiffTest-TabsToSpaces.inc │ │ ├── GenerateDiffTest-VarNameChanged.diff │ │ ├── GenerateDiffTest-VarNameChanged.inc │ │ ├── GenerateDiffTest-WhiteSpaceAtEnd.diff │ │ ├── GenerateDiffTest-WhiteSpaceAtEnd.inc │ │ ├── GenerateDiffTest-WhiteSpaceAtStart.diff │ │ ├── GenerateDiffTest-WhiteSpaceAtStart.inc │ │ ├── GenerateDiffTest-WindowsLineEndings.inc │ │ ├── GenerateDiffTest.inc │ │ ├── TestStandard │ │ │ ├── Sniffs │ │ │ │ └── FixFileReturnValue │ │ │ │ │ ├── AllGoodSniff.php │ │ │ │ │ ├── ConflictSniff.php │ │ │ │ │ └── NotEnoughLoopsSniff.php │ │ │ └── ruleset.xml │ │ └── test.inc │ └── GenerateDiffTest.php ├── Generators │ ├── AllValidDocsTest.xml │ ├── AnchorLinksTest.xml │ ├── Expectations │ │ ├── ExpectedOutputCodeComparisonBlankLines.html │ │ ├── ExpectedOutputCodeComparisonBlankLines.md │ │ ├── ExpectedOutputCodeComparisonBlankLines.txt │ │ ├── ExpectedOutputCodeComparisonBlockLength.html │ │ ├── ExpectedOutputCodeComparisonBlockLength.md │ │ ├── ExpectedOutputCodeComparisonBlockLength.txt │ │ ├── ExpectedOutputCodeComparisonEncoding.html │ │ ├── ExpectedOutputCodeComparisonEncoding.md │ │ ├── ExpectedOutputCodeComparisonEncoding.txt │ │ ├── ExpectedOutputCodeComparisonLineLength.html │ │ ├── ExpectedOutputCodeComparisonLineLength.md │ │ ├── ExpectedOutputCodeComparisonLineLength.txt │ │ ├── ExpectedOutputCodeTitleLineWrapping.html │ │ ├── ExpectedOutputCodeTitleLineWrapping.md │ │ ├── ExpectedOutputCodeTitleLineWrapping.txt │ │ ├── ExpectedOutputCodeTitleWhitespace.html │ │ ├── ExpectedOutputCodeTitleWhitespace.md │ │ ├── ExpectedOutputCodeTitleWhitespace.txt │ │ ├── ExpectedOutputDocumentationTitleCase.html │ │ ├── ExpectedOutputDocumentationTitleCase.md │ │ ├── ExpectedOutputDocumentationTitleCase.txt │ │ ├── ExpectedOutputDocumentationTitleLength.html │ │ ├── ExpectedOutputDocumentationTitleLength.md │ │ ├── ExpectedOutputDocumentationTitleLength.txt │ │ ├── ExpectedOutputDocumentationTitlePCREFallback.html │ │ ├── ExpectedOutputDocumentationTitlePCREFallback.md │ │ ├── ExpectedOutputDocumentationTitlePCREFallback.txt │ │ ├── ExpectedOutputDocumentationTitleToAnchorSlug.html │ │ ├── ExpectedOutputEmpty.txt │ │ ├── ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.html │ │ ├── ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.md │ │ ├── ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.txt │ │ ├── ExpectedOutputInvalidCodeComparisonMissingCodeElm.html │ │ ├── ExpectedOutputInvalidCodeComparisonMissingCodeElm.md │ │ ├── ExpectedOutputInvalidCodeComparisonMissingCodeElm.txt │ │ ├── ExpectedOutputInvalidCodeComparisonNoCode.html │ │ ├── ExpectedOutputInvalidCodeComparisonNoCode.md │ │ ├── ExpectedOutputInvalidCodeComparisonNoCode.txt │ │ ├── ExpectedOutputInvalidCodeComparisonNoContent.html │ │ ├── ExpectedOutputInvalidCodeComparisonNoContent.md │ │ ├── ExpectedOutputInvalidCodeComparisonNoContent.txt │ │ ├── ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.html │ │ ├── ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.md │ │ ├── ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.txt │ │ ├── ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.html │ │ ├── ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.md │ │ ├── ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.txt │ │ ├── ExpectedOutputInvalidCodeTitleEmpty.html │ │ ├── ExpectedOutputInvalidCodeTitleEmpty.md │ │ ├── ExpectedOutputInvalidCodeTitleEmpty.txt │ │ ├── ExpectedOutputInvalidCodeTitleMissing.html │ │ ├── ExpectedOutputInvalidCodeTitleMissing.md │ │ ├── ExpectedOutputInvalidCodeTitleMissing.txt │ │ ├── ExpectedOutputInvalidDocumentationTitleEmpty.html │ │ ├── ExpectedOutputInvalidDocumentationTitleEmpty.md │ │ ├── ExpectedOutputInvalidDocumentationTitleEmpty.txt │ │ ├── ExpectedOutputInvalidDocumentationTitleMissing.html │ │ ├── ExpectedOutputInvalidDocumentationTitleMissing.md │ │ ├── ExpectedOutputInvalidDocumentationTitleMissing.txt │ │ ├── ExpectedOutputInvalidStandardNoContent.html │ │ ├── ExpectedOutputInvalidStandardNoContent.md │ │ ├── ExpectedOutputInvalidStandardNoContent.txt │ │ ├── ExpectedOutputOneDoc.html │ │ ├── ExpectedOutputOneDoc.md │ │ ├── ExpectedOutputOneDoc.txt │ │ ├── ExpectedOutputStandardBlankLines.html │ │ ├── ExpectedOutputStandardBlankLines.md │ │ ├── ExpectedOutputStandardBlankLines.txt │ │ ├── ExpectedOutputStandardEncoding.html │ │ ├── ExpectedOutputStandardEncoding.md │ │ ├── ExpectedOutputStandardEncoding.txt │ │ ├── ExpectedOutputStandardIndent.html │ │ ├── ExpectedOutputStandardIndent.md │ │ ├── ExpectedOutputStandardIndent.txt │ │ ├── ExpectedOutputStandardLineWrapping.html │ │ ├── ExpectedOutputStandardLineWrapping.md │ │ ├── ExpectedOutputStandardLineWrapping.txt │ │ ├── ExpectedOutputStructureDocs.html │ │ ├── ExpectedOutputStructureDocs.md │ │ ├── ExpectedOutputStructureDocs.txt │ │ ├── ExpectedOutputUnsupportedOneElmAtWrongLevel.html │ │ ├── ExpectedOutputUnsupportedOneElmAtWrongLevel.md │ │ ├── ExpectedOutputUnsupportedOneElmAtWrongLevel.txt │ │ ├── ExpectedOutputUnsupportedSuperfluousCodeElement.html │ │ ├── ExpectedOutputUnsupportedSuperfluousCodeElement.md │ │ └── ExpectedOutputUnsupportedSuperfluousCodeElement.txt │ ├── Fixtures │ │ ├── HTMLDouble.php │ │ ├── MarkdownDouble.php │ │ ├── MockGenerator.php │ │ └── StandardWithDocs │ │ │ ├── Docs │ │ │ ├── Content │ │ │ │ ├── CodeComparisonBlankLinesStandard.xml │ │ │ │ ├── CodeComparisonBlockLengthStandard.xml │ │ │ │ ├── CodeComparisonEncodingStandard.xml │ │ │ │ ├── CodeComparisonLineLengthStandard.xml │ │ │ │ ├── CodeTitleLineWrappingStandard.xml │ │ │ │ ├── CodeTitleWhitespaceStandard.xml │ │ │ │ ├── DocumentationTitleCaseStandard.xml │ │ │ │ ├── DocumentationTitleLengthStandard.xml │ │ │ │ ├── DocumentationTitlePCREFallbackStandard.xml │ │ │ │ ├── DocumentationTitleToAnchorSlug1Standard.xml │ │ │ │ ├── DocumentationTitleToAnchorSlug2Standard.xml │ │ │ │ ├── DocumentationTitleToAnchorSlug3Standard.xml │ │ │ │ ├── StandardBlankLinesStandard.xml │ │ │ │ ├── StandardEncodingStandard.xml │ │ │ │ ├── StandardIndentStandard.xml │ │ │ │ └── StandardLineWrappingStandard.xml │ │ │ ├── Invalid │ │ │ │ ├── CodeComparisonMismatchedCodeElmsStandard.xml │ │ │ │ ├── CodeComparisonMissingCodeElmStandard.xml │ │ │ │ ├── CodeComparisonNoCodeStandard.xml │ │ │ │ ├── CodeComparisonNoContentStandard.xml │ │ │ │ ├── CodeComparisonOneEmptyCodeElmStandard.xml │ │ │ │ ├── CodeComparisonTwoEmptyCodeElmsStandard.xml │ │ │ │ ├── CodeTitleEmptyStandard.xml │ │ │ │ ├── CodeTitleMissingStandard.xml │ │ │ │ ├── DocumentationTitleEmptyStandard.xml │ │ │ │ ├── DocumentationTitleMissingStandard.xml │ │ │ │ └── StandardNoContentStandard.xml │ │ │ ├── Structure │ │ │ │ ├── NoContentStandard.xml │ │ │ │ ├── NoDocumentationElementStandard.xml │ │ │ │ ├── OneCodeComparisonNoStandardStandard.xml │ │ │ │ ├── OneStandardBlockCodeComparisonStandard.xml │ │ │ │ ├── OneStandardBlockNoCodeStandard.xml │ │ │ │ ├── OneStandardBlockTwoCodeComparisonsStandard.xml │ │ │ │ ├── TwoStandardBlocksNoCodeStandard.xml │ │ │ │ ├── TwoStandardBlocksOneCodeComparisonStandard.xml │ │ │ │ └── TwoStandardBlocksThreeCodeComparisonsStandard.xml │ │ │ └── Unsupported │ │ │ │ ├── ElementAtWrongLevelStandard.xml │ │ │ │ ├── OneElmAtWrongLevelStandard.xml │ │ │ │ ├── SuperfluousCodeElementStandard.xml │ │ │ │ └── UnknownElementStandard.xml │ │ │ ├── Sniffs │ │ │ ├── Content │ │ │ │ ├── CodeComparisonBlankLinesSniff.php │ │ │ │ ├── CodeComparisonBlockLengthSniff.php │ │ │ │ ├── CodeComparisonEncodingSniff.php │ │ │ │ ├── CodeComparisonLineLengthSniff.php │ │ │ │ ├── CodeTitleLineWrappingSniff.php │ │ │ │ ├── CodeTitleWhitespaceSniff.php │ │ │ │ ├── DocumentationTitleCaseSniff.php │ │ │ │ ├── DocumentationTitleLengthSniff.php │ │ │ │ ├── DocumentationTitlePCREFallbackSniff.php │ │ │ │ ├── DocumentationTitleToAnchorSlug1Sniff.php │ │ │ │ ├── DocumentationTitleToAnchorSlug2Sniff.php │ │ │ │ ├── DocumentationTitleToAnchorSlug3Sniff.php │ │ │ │ ├── StandardBlankLinesSniff.php │ │ │ │ ├── StandardEncodingSniff.php │ │ │ │ ├── StandardIndentSniff.php │ │ │ │ └── StandardLineWrappingSniff.php │ │ │ ├── DummySniff.php │ │ │ ├── Invalid │ │ │ │ ├── CodeComparisonMismatchedCodeElmsSniff.php │ │ │ │ ├── CodeComparisonMissingCodeElmSniff.php │ │ │ │ ├── CodeComparisonNoCodeSniff.php │ │ │ │ ├── CodeComparisonNoContentSniff.php │ │ │ │ ├── CodeComparisonOneEmptyCodeElmSniff.php │ │ │ │ ├── CodeComparisonTwoEmptyCodeElmsSniff.php │ │ │ │ ├── CodeTitleEmptySniff.php │ │ │ │ ├── CodeTitleMissingSniff.php │ │ │ │ ├── DocumentationTitleEmptySniff.php │ │ │ │ ├── DocumentationTitleMissingSniff.php │ │ │ │ └── StandardNoContentSniff.php │ │ │ ├── Structure │ │ │ │ ├── DocumentationMissingSniff.php │ │ │ │ ├── NoContentSniff.php │ │ │ │ ├── NoDocumentationElementSniff.php │ │ │ │ ├── OneCodeComparisonNoStandardSniff.php │ │ │ │ ├── OneStandardBlockCodeComparisonSniff.php │ │ │ │ ├── OneStandardBlockNoCodeSniff.php │ │ │ │ ├── OneStandardBlockTwoCodeComparisonsSniff.php │ │ │ │ ├── TwoStandardBlocksNoCodeSniff.php │ │ │ │ ├── TwoStandardBlocksOneCodeComparisonSniff.php │ │ │ │ └── TwoStandardBlocksThreeCodeComparisonsSniff.php │ │ │ └── Unsupported │ │ │ │ ├── ElementAtWrongLevelSniff.php │ │ │ │ ├── OneElmAtWrongLevelSniff.php │ │ │ │ ├── SuperfluousCodeElementSniff.php │ │ │ │ └── UnknownElementSniff.php │ │ │ └── ruleset.xml │ ├── GeneratorTest.php │ ├── HTMLTest.php │ ├── MarkdownTest.php │ ├── NoDocsTest.xml │ ├── NoValidDocsTest.xml │ ├── OneDocTest.xml │ ├── StructureDocsTest.xml │ └── TextTest.php ├── Ruleset │ ├── AbstractRulesetTestCase.php │ ├── ConstructorNoSniffsTest.xml │ ├── ConstructorTest.php │ ├── DisplayCachedMessagesTest.php │ ├── ExpandRulesetReferenceCaseMismatch1Test.xml │ ├── ExpandRulesetReferenceCaseMismatch2Test.xml │ ├── ExpandRulesetReferenceHomePathFailTest.xml │ ├── ExpandRulesetReferenceHomePathTest.php │ ├── ExpandRulesetReferenceHomePathTest.xml │ ├── ExpandRulesetReferenceInternalIgnoreTest.xml │ ├── ExpandRulesetReferenceInternalStandardTest.xml │ ├── ExpandRulesetReferenceInternalTest.php │ ├── ExpandRulesetReferenceInvalidErrorCode1Test.xml │ ├── ExpandRulesetReferenceInvalidErrorCode2Test.xml │ ├── ExpandRulesetReferenceInvalidErrorCode3Test.xml │ ├── ExpandRulesetReferenceInvalidHomePathRefTest.xml │ ├── ExpandRulesetReferenceMissingFileTest.xml │ ├── ExpandRulesetReferenceTest.php │ ├── ExpandRulesetReferenceTest.xml │ ├── ExpandRulesetReferenceUnknownCategoryTest.xml │ ├── ExpandRulesetReferenceUnknownSniffTest.xml │ ├── ExpandRulesetReferenceUnknownStandardTest.xml │ ├── ExpandSniffDirectoryTest.php │ ├── ExpandSniffDirectoryTest.xml │ ├── ExplainCustomRulesetTest.xml │ ├── ExplainSingleSniffTest.xml │ ├── ExplainTest.php │ ├── Fixtures │ │ ├── BrokenNamingConventions │ │ │ └── Sniffs │ │ │ │ ├── Category │ │ │ │ ├── Sniff.php │ │ │ │ └── SubDir │ │ │ │ │ └── TooDeeplyNestedSniff.php │ │ │ │ ├── MissingCategoryDirSniff.php │ │ │ │ ├── NoNamespaceSniff.php │ │ │ │ ├── PartialNamespaceSniff.php │ │ │ │ └── Sniffs │ │ │ │ └── CategoryCalledSniffsSniff.php │ │ ├── DirectoryExpansion │ │ │ └── .hiddenAbove │ │ │ │ └── src │ │ │ │ └── MyStandard │ │ │ │ ├── .hidden │ │ │ │ └── HiddenDirShouldBeIgnoredSniff.php │ │ │ │ ├── AbstractSniff.php │ │ │ │ ├── DummySniff.php │ │ │ │ ├── Sniffs │ │ │ │ ├── .hidden │ │ │ │ │ └── HiddenDirShouldBeIgnoredSniff.php │ │ │ │ ├── AbstractSniff.php │ │ │ │ ├── CategoryA │ │ │ │ │ ├── .HiddenFileSniff.php │ │ │ │ │ ├── .hidden │ │ │ │ │ │ ├── DoNotFindMeSniff.txt │ │ │ │ │ │ └── HiddenDirShouldBeIgnoredSniff.php │ │ │ │ │ ├── DoNotFindMeSniff.txt │ │ │ │ │ ├── FindMeSniff.php │ │ │ │ │ ├── IncorrectFileExtensionSniff.inc │ │ │ │ │ └── MissingSniffSuffix.php │ │ │ │ └── CategoryB │ │ │ │ │ ├── AnotherAbstractSniff.php │ │ │ │ │ ├── FindMeSniff.php │ │ │ │ │ └── IncorrectFileExtensionSniff.php3 │ │ │ │ ├── Utils │ │ │ │ ├── NotInSniffsDirSniff.php │ │ │ │ └── SubDir │ │ │ │ │ └── NotInSniffsDirSniff.php │ │ │ │ └── ruleset.xml │ │ ├── ExternalA │ │ │ ├── Sniffs │ │ │ │ └── CheckSomething │ │ │ │ │ └── ValidSniff.php │ │ │ └── ruleset.xml │ │ ├── ExternalB │ │ │ ├── Sniffs │ │ │ │ └── CheckMore │ │ │ │ │ └── ValidSniff.php │ │ │ └── ruleset.xml │ │ ├── FakeHomePath │ │ │ └── src │ │ │ │ └── MyStandard │ │ │ │ ├── Sniffs │ │ │ │ └── Category │ │ │ │ │ └── ValidSniff.php │ │ │ │ └── ruleset.xml │ │ ├── Internal │ │ │ ├── Sniffs │ │ │ │ └── Valid │ │ │ │ │ └── ValidSniff.php │ │ │ └── ruleset.xml │ │ ├── InvalidNoSniffsDir │ │ │ ├── Sniffs │ │ │ └── ruleset.xml │ │ ├── ProcessRulesetAutoloadLoadAlways.1.php │ │ ├── ProcessRulesetAutoloadLoadAlways.2.php │ │ ├── ProcessRulesetAutoloadLoadAlways.3.php │ │ ├── ProcessRulesetAutoloadLoadAlways.4.php │ │ ├── ProcessRulesetAutoloadLoadPhpcbfOnly.php │ │ ├── ProcessRulesetAutoloadLoadPhpcsOnly.php │ │ ├── PropertyTypeHandlingInline.inc │ │ └── TestStandard │ │ │ ├── Sniffs │ │ │ ├── Deprecated │ │ │ │ ├── WithLongReplacementSniff.php │ │ │ │ ├── WithReplacementContainingLinuxNewlinesSniff.php │ │ │ │ ├── WithReplacementContainingNewlinesSniff.php │ │ │ │ ├── WithReplacementSniff.php │ │ │ │ └── WithoutReplacementSniff.php │ │ │ ├── DeprecatedInvalid │ │ │ │ ├── EmptyDeprecationVersionSniff.php │ │ │ │ ├── EmptyRemovalVersionSniff.php │ │ │ │ ├── InvalidDeprecationMessageSniff.php │ │ │ │ ├── InvalidDeprecationVersionSniff.php │ │ │ │ └── InvalidRemovalVersionSniff.php │ │ │ ├── InvalidSniffError │ │ │ │ ├── NoImplementsNoProcessSniff.php │ │ │ │ ├── NoImplementsNoRegisterOrProcessSniff.php │ │ │ │ └── NoImplementsNoRegisterSniff.php │ │ │ ├── InvalidSniffs │ │ │ │ └── RegisterNoArraySniff.php │ │ │ ├── MissingInterface │ │ │ │ ├── InvalidImplementsWithoutImplementSniff.php │ │ │ │ ├── ValidImplementsSniff.php │ │ │ │ └── ValidImplementsViaAbstractSniff.php │ │ │ ├── SetProperty │ │ │ │ ├── AllowedAsDeclaredSniff.php │ │ │ │ ├── AllowedViaMagicMethodSniff.php │ │ │ │ ├── AllowedViaStdClassSniff.php │ │ │ │ ├── NotAllowedViaAttributeSniff.php │ │ │ │ └── PropertyTypeHandlingSniff.php │ │ │ ├── SupportedTokenizers │ │ │ │ ├── ImplementsDeprecatedInterfaceSniff.php │ │ │ │ ├── ListensForCSSAndJSSniff.php │ │ │ │ ├── ListensForCSSAndUnrecognizedSniff.php │ │ │ │ ├── ListensForCSSSniff.php │ │ │ │ ├── ListensForEmptySniff.php │ │ │ │ ├── ListensForJSSniff.php │ │ │ │ ├── ListensForPHPAndCSSAndJSSniff.php │ │ │ │ └── ListensForUnrecognizedTokenizersSniff.php │ │ │ └── ValidSniffs │ │ │ │ └── RegisterEmptyArraySniff.php │ │ │ └── ruleset.xml │ ├── GetIgnorePatternsTest.php │ ├── GetIgnorePatternsTest.xml │ ├── GetIncludePatternsTest.php │ ├── GetIncludePatternsTest.xml │ ├── PopulateTokenListenersNamingConventionsTest.php │ ├── PopulateTokenListenersNamingConventionsTest.xml │ ├── PopulateTokenListenersRegisterNoArrayTest.xml │ ├── PopulateTokenListenersSupportedTokenizersTest.php │ ├── PopulateTokenListenersSupportedTokenizersTest.xml │ ├── PopulateTokenListenersTest.php │ ├── PopulateTokenListenersTest.xml │ ├── ProcessRuleInvalidTypeTest.php │ ├── ProcessRuleInvalidTypeTest.xml │ ├── ProcessRuleShouldProcessElementTest.php │ ├── ProcessRuleShouldProcessElementTest.xml │ ├── ProcessRulesetAutoExpandSniffsDirectoryTest.xml │ ├── ProcessRulesetAutoloadFileNotFoundTest.xml │ ├── ProcessRulesetAutoloadTest.php │ ├── ProcessRulesetAutoloadTest.xml │ ├── ProcessRulesetBrokenRulesetEmptyFileTest.xml │ ├── ProcessRulesetBrokenRulesetMultiErrorTest.xml │ ├── ProcessRulesetBrokenRulesetSingleErrorTest.xml │ ├── ProcessRulesetBrokenRulesetTest.php │ ├── ProcessRulesetExcludeSniffGroupTest.xml │ ├── ProcessRulesetInvalidNoSniffsDirTest.xml │ ├── ProcessRulesetMiscTest.xml │ ├── ProcessRulesetShouldProcessElementTest.php │ ├── ProcessRulesetShouldProcessElementTest.xml │ ├── ProcessRulesetTest.php │ ├── PropertyTypeHandlingInlineTest.xml │ ├── PropertyTypeHandlingTest.php │ ├── PropertyTypeHandlingTest.xml │ ├── RegisterSniffsMissingInterfaceInvalidTest.xml │ ├── RegisterSniffsMissingInterfaceTest.php │ ├── RegisterSniffsMissingInterfaceValidTest.xml │ ├── RegisterSniffsRejectsInvalidSniffNoImplementsNoProcessTest.xml │ ├── RegisterSniffsRejectsInvalidSniffNoImplementsNoRegisterOrProcessTest.xml │ ├── RegisterSniffsRejectsInvalidSniffNoImplementsNoRegisterTest.xml │ ├── RegisterSniffsRejectsInvalidSniffTest.php │ ├── RegisterSniffsTest.php │ ├── RuleInclusionAbsoluteLinuxTest.php │ ├── RuleInclusionAbsoluteLinuxTest.xml │ ├── RuleInclusionAbsoluteWindowsTest.php │ ├── RuleInclusionAbsoluteWindowsTest.xml │ ├── RuleInclusionTest-include.xml │ ├── RuleInclusionTest.php │ ├── RuleInclusionTest.xml │ ├── SetPropertyAllowedAsDeclaredTest.xml │ ├── SetPropertyAllowedViaMagicMethodTest.xml │ ├── SetPropertyAllowedViaStdClassTest.xml │ ├── SetPropertyAppliesPropertyToMultipleSniffsInCategoryTest.xml │ ├── SetPropertyDoesNotThrowErrorOnInvalidPropertyWhenSetForCategoryTest.xml │ ├── SetPropertyDoesNotThrowErrorOnInvalidPropertyWhenSetForStandardTest.xml │ ├── SetPropertyNotAllowedViaAttributeTest.xml │ ├── SetPropertyThrowsErrorOnInvalidPropertyTest.xml │ ├── SetSniffPropertyTest.php │ ├── ShowSniffDeprecationsEmptyDeprecationVersionTest.xml │ ├── ShowSniffDeprecationsEmptyRemovalVersionTest.xml │ ├── ShowSniffDeprecationsInvalidDeprecationMessageTest.xml │ ├── ShowSniffDeprecationsInvalidDeprecationVersionTest.xml │ ├── ShowSniffDeprecationsInvalidRemovalVersionTest.xml │ ├── ShowSniffDeprecationsOrderTest.xml │ ├── ShowSniffDeprecationsReportWidthTest.xml │ ├── ShowSniffDeprecationsTest.php │ └── ShowSniffDeprecationsTest.xml ├── Runner │ ├── AbstractRunnerTestCase.php │ ├── PrintProgressDotsTest.php │ ├── PrintProgressTest.php │ ├── RunPHPCSExplainTest.php │ └── RunPHPCSGeneratorTest.php ├── Sniffs │ ├── AbstractArraySniffTest.inc │ ├── AbstractArraySniffTest.php │ └── AbstractArraySniffTestable.php ├── Standards │ └── StandardRulesetsQATest.php ├── Tokenizers │ ├── AbstractTokenizerTestCase.php │ ├── Comment │ │ ├── CommentTestCase.php │ │ ├── LiveCoding1Test.inc │ │ ├── LiveCoding1Test.php │ │ ├── LiveCoding2Test.inc │ │ ├── LiveCoding2Test.php │ │ ├── LiveCoding3Test.inc │ │ ├── LiveCoding3Test.php │ │ ├── LiveCoding4Test.inc │ │ ├── LiveCoding4Test.php │ │ ├── MultiLineDocBlockTest.inc │ │ ├── MultiLineDocBlockTest.php │ │ ├── PhpcsAnnotationsInDocBlockTest.inc │ │ ├── PhpcsAnnotationsInDocBlockTest.php │ │ ├── SingleLineDocBlockTest.inc │ │ └── SingleLineDocBlockTest.php │ ├── PHP │ │ ├── AnonClassParenthesisOwnerTest.inc │ │ ├── AnonClassParenthesisOwnerTest.php │ │ ├── ArrayKeywordTest.inc │ │ ├── ArrayKeywordTest.php │ │ ├── AttributesTest.inc │ │ ├── AttributesTest.php │ │ ├── BackfillAsymmetricVisibilityTest.inc │ │ ├── BackfillAsymmetricVisibilityTest.php │ │ ├── BackfillEnumTest.inc │ │ ├── BackfillEnumTest.php │ │ ├── BackfillExplicitOctalNotationTest.inc │ │ ├── BackfillExplicitOctalNotationTest.php │ │ ├── BackfillFnTokenParseErrorTest.inc │ │ ├── BackfillFnTokenParseErrorTest.php │ │ ├── BackfillFnTokenTest.inc │ │ ├── BackfillFnTokenTest.php │ │ ├── BackfillMatchTokenTest.inc │ │ ├── BackfillMatchTokenTest.php │ │ ├── BackfillNumericSeparatorTest.inc │ │ ├── BackfillNumericSeparatorTest.php │ │ ├── BackfillReadonlyTest.inc │ │ ├── BackfillReadonlyTest.php │ │ ├── BitwiseOrTest.inc │ │ ├── BitwiseOrTest.php │ │ ├── ContextSensitiveKeywordsTest.inc │ │ ├── ContextSensitiveKeywordsTest.php │ │ ├── DNFTypesParseError1Test.inc │ │ ├── DNFTypesParseError1Test.php │ │ ├── DNFTypesParseError2Test.inc │ │ ├── DNFTypesParseError2Test.php │ │ ├── DNFTypesTest.inc │ │ ├── DNFTypesTest.php │ │ ├── DefaultKeywordTest.inc │ │ ├── DefaultKeywordTest.php │ │ ├── DoubleArrowTest.inc │ │ ├── DoubleArrowTest.php │ │ ├── DoubleQuotedStringTest.inc │ │ ├── DoubleQuotedStringTest.php │ │ ├── EnumCaseTest.inc │ │ ├── EnumCaseTest.php │ │ ├── FinallyTest.inc │ │ ├── FinallyTest.php │ │ ├── GotoLabelTest.inc │ │ ├── GotoLabelTest.php │ │ ├── HeredocNowdocTest.inc │ │ ├── HeredocNowdocTest.php │ │ ├── HeredocParseErrorTest.inc │ │ ├── HeredocParseErrorTest.php │ │ ├── HeredocStringTest.inc │ │ ├── HeredocStringTest.php │ │ ├── NamedFunctionCallArgumentsTest.inc │ │ ├── NamedFunctionCallArgumentsTest.php │ │ ├── NullableVsInlineThenTest.inc │ │ ├── NullableVsInlineThenTest.php │ │ ├── NullsafeObjectOperatorTest.inc │ │ ├── NullsafeObjectOperatorTest.php │ │ ├── OtherContextSensitiveKeywordsTest.inc │ │ ├── OtherContextSensitiveKeywordsTest.php │ │ ├── PHPOpenTagEOF1Test.inc │ │ ├── PHPOpenTagEOF1Test.php │ │ ├── PHPOpenTagEOF2Test.inc │ │ ├── PHPOpenTagEOF2Test.php │ │ ├── PHPOpenTagEOF3Test.inc │ │ ├── PHPOpenTagEOF3Test.php │ │ ├── ResolveSimpleTokenTest.inc │ │ ├── ResolveSimpleTokenTest.php │ │ ├── ShortArrayTest.inc │ │ ├── ShortArrayTest.php │ │ ├── StableCommentWhitespaceTest.inc │ │ ├── StableCommentWhitespaceTest.php │ │ ├── StableCommentWhitespaceWinTest.inc │ │ ├── StableCommentWhitespaceWinTest.php │ │ ├── TypeIntersectionTest.inc │ │ ├── TypeIntersectionTest.php │ │ ├── TypedConstantsTest.inc │ │ ├── TypedConstantsTest.php │ │ ├── UndoNamespacedNameSingleTokenTest.inc │ │ ├── UndoNamespacedNameSingleTokenTest.php │ │ ├── YieldTest.inc │ │ └── YieldTest.php │ └── Tokenizer │ │ ├── CreateParenthesisNestingMapDNFTypesTest.inc │ │ ├── CreateParenthesisNestingMapDNFTypesTest.php │ │ ├── CreatePositionMapHeredocNowdocCloserTest.inc │ │ ├── CreatePositionMapHeredocNowdocCloserTest.php │ │ ├── CreatePositionMapHeredocNowdocOpenerTest.inc │ │ ├── CreatePositionMapHeredocNowdocOpenerTest.php │ │ ├── CreatePositionMapTabWidth0Test.php │ │ ├── CreatePositionMapYieldFromTest.inc │ │ ├── CreatePositionMapYieldFromTest.php │ │ ├── CreateTokenMapArrayParenthesesTest.inc │ │ ├── CreateTokenMapArrayParenthesesTest.php │ │ ├── RecurseScopeMapCaseKeywordConditionsTest.inc │ │ ├── RecurseScopeMapCaseKeywordConditionsTest.php │ │ ├── RecurseScopeMapDefaultKeywordConditionsTest.inc │ │ ├── RecurseScopeMapDefaultKeywordConditionsTest.php │ │ ├── RecurseScopeMapIfKeywordConditionsTest.inc │ │ ├── RecurseScopeMapIfKeywordConditionsTest.php │ │ ├── RecurseScopeMapSwitchTokenScopeTest.inc │ │ ├── RecurseScopeMapSwitchTokenScopeTest.php │ │ ├── RecurseScopeMapWithNamespaceOperatorTest.inc │ │ ├── RecurseScopeMapWithNamespaceOperatorTest.php │ │ ├── ReplaceTabsInTokenMiscTest.php │ │ ├── ReplaceTabsInTokenTabWidth1Test.php │ │ ├── ReplaceTabsInTokenTabWidth2Test.php │ │ ├── ReplaceTabsInTokenTabWidth4Test.php │ │ ├── ReplaceTabsInTokenTabWidth5Test.php │ │ ├── ReplaceTabsInTokenTest.inc │ │ └── ReplaceTabsInTokenTestCase.php └── Util │ ├── Common │ ├── EscapeshellcmdTest.php │ ├── GetSniffCodeTest.php │ ├── IsCamelCapsTest.php │ ├── PrepareForOutputTest.php │ ├── StripColorsTest.php │ └── SuggestTypeTest.php │ ├── Help │ └── HelpTest.php │ ├── MessageCollector │ └── MessageCollectorTest.php │ ├── Timing │ ├── GetHumanReadableDurationTest.php │ └── TimingTest.php │ └── Tokens │ ├── GetHighestWeightedTokenTest.php │ └── TokenNameTest.php ├── FileList.php ├── Standards ├── AbstractSniffUnitTest.php └── AllSniffs.php ├── TestSuite.php ├── TestSuite7.php └── bootstrap.php /CodeSniffer.conf.dist: -------------------------------------------------------------------------------- 1 | 'PSR2', 4 | 'report_format' => 'summary', 5 | 'show_warnings' => '0', 6 | 'show_progress' => '1', 7 | 'report_width' => '120', 8 | ); 9 | ?> 10 | -------------------------------------------------------------------------------- /bin/phpcbf.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM PHP Code Beautifier and Fixer fixes violations of a defined coding standard. 3 | REM 4 | REM @author Greg Sherwood 5 | REM @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) 6 | REM @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 7 | 8 | set PHPBIN=php 9 | 10 | "%PHPBIN%" "%~dp0\phpcbf" %* 11 | -------------------------------------------------------------------------------- /bin/phpcs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM PHP_CodeSniffer detects violations of a defined coding standard. 3 | REM 4 | REM @author Greg Sherwood 5 | REM @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) 6 | REM @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 7 | 8 | set PHPBIN=php 9 | 10 | "%PHPBIN%" "%~dp0\phpcs" %* 11 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Files/ByteOrderMarkStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Files/EndFileNewlineStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Files/EndFileNoNewlineStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Files/ExecutableFileStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Files/LineEndingsStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Files/LineLengthStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Files/LowercasedFilenameStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Metrics/CyclomaticComplexityStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/Metrics/NestingLevelStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/PHP/BacktickOperatorStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/PHP/DisallowRequestSuperglobalStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/PHP/DisallowShortOpenTagStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | to delimit PHP code, not the shorthand. This is the most portable way to include PHP code on differing operating systems and setups. 5 | ]]> 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/PHP/DiscourageGotoStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/VersionControl/SubversionPropertiesStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/WhiteSpace/DisallowSpaceIndentStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Docs/WhiteSpace/DisallowTabIndentStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.10.inc: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 5 |

some html here

6 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Some HTML

4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.3.inc: -------------------------------------------------------------------------------- 1 |

Some HTML at the beginning of an ANSI/iso-8859-1 encoded file without a byte order mark (BOM) character

2 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.4.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPCSStandards/PHP_CodeSniffer/30fdf53bfe0ff2740d26db85ebe89bb383357593/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.4.inc -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.5.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPCSStandards/PHP_CodeSniffer/30fdf53bfe0ff2740d26db85ebe89bb383357593/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.5.inc -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} 3 | 4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.7.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.8.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} 3 | 4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.css.fixed: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} 3 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.css.fixed: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js: -------------------------------------------------------------------------------- 1 | 2 | alert('hi); 3 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js.fixed: -------------------------------------------------------------------------------- 1 | 2 | alert('hi); -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.9.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 5 | 6 | 9 | 10 | group('a.id, 14 | uc.name, 15 | ag.title, 16 | ua.name' 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LineEndingsUnitTest.1.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | group('a.id, 14 | uc.name, 15 | ag.title, 16 | ua.name' 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LineEndingsUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
...more HTML...
5 | 6 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LineEndingsUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
...more HTML...
5 | 6 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LineEndingsUnitTest.css: -------------------------------------------------------------------------------- 1 | #login-container { 2 | margin-left: -225px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LineEndingsUnitTest.css.fixed: -------------------------------------------------------------------------------- 1 | #login-container { 2 | margin-left: -225px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LineEndingsUnitTest.js: -------------------------------------------------------------------------------- 1 | alert('hi'); 2 | alert('hi'); 3 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LineEndingsUnitTest.js.fixed: -------------------------------------------------------------------------------- 1 | alert('hi'); 2 | alert('hi'); 3 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LineLengthUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | phpcs:set Generic.Files.LineLength lineLimit 75 2 | phpcs:set Generic.Files.LineLength absoluteLineLimit 80 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.inc: -------------------------------------------------------------------------------- 1 | 27 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.inc: -------------------------------------------------------------------------------- 1 | trait; 16 | echo Something::$trait; 17 | echo $trait; 18 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Files/lowercased_filename_unit_test.inc: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 4 | Bold text 5 | 8 | Italic text 9 | 2 | Bold text 3 | 4 | Italic text 5 | 2 | 3 | Some content here. 4 | 7 | 8 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.1.inc.fixed: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content here. 4 | 7 | 8 | 11 | 14 |
15 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.2.inc: -------------------------------------------------------------------------------- 1 |
2 | <% echo $var; %> 3 |

Some text <% echo $var; %> and some more text

4 | <%= $var . ' and some more text to make sure the snippet works'; %> 5 |

Some text <%= $var %> and some more text

6 |
7 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Some text and some more text

4 | 5 |

Some text and some more text

6 |
7 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 2 |
3 | <% echo $var; %> 4 |

Some text <% echo $var; %> and some more text

5 | <%= $var . ' and some more text to make sure the snippet works'; %> 6 |

Some text <%= $var %> and some more text

7 |
8 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.1.inc: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content here. 4 | 5 | 6 | Some content Some more content 7 | 10 | 11 |
12 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.1.inc.fixed: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content here. 4 | 5 | 6 | Some content Some more content 7 | 10 | 11 |
12 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.2.inc: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content Some more content 4 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content Some more content 4 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | // Although not the focus of this test, this is an intentional parse error when short_open_tag is on. 2 | // This should be the only test in this file. 3 | // Test that the sniff bails when short_open_tag is off and there is a token other than 4 | // T_INLINE_HTML after the short open tag and before the close tag. 5 | 6 | 5 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.inc: -------------------------------------------------------------------------------- 1 | php_sapi_name() === true) {} 5 | if ($object?->php_sapi_name() === true) {} 6 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/PHP/SyntaxUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 2 |
text
3 | 4 | -------------------------------------------------------------------------------- /src/Standards/Generic/Tests/Strings/UnnecessaryHeredocUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Foo 7 | 8 | 9 |
10 |
11 |
12 |
13 |
14 |
15 | 16 | 17 | 18 | 4 | 5 | 6 | Foo 7 | 8 | 9 |
10 |
11 |
12 |
13 |
14 |
15 | 16 | 17 | 18 | 4 | 5 | 6 | Foo 7 | 8 | 9 |
10 |
11 |
12 |
13 |
14 |
15 | 16 | 17 | 18 | 4 | 5 | 6 | Foo 7 | 8 | 9 |
10 |
11 |
12 |
13 |
14 |
15 | 16 | 17 | 18 | 2 | 3 | A collection of generic sniffs. This standard is not designed to be used to check code. 4 | 5 | -------------------------------------------------------------------------------- /src/Standards/MySource/Tests/CSS/BrowserSpecificStylesUnitTest.css: -------------------------------------------------------------------------------- 1 | .SettingsTabPaneWidgetType-tab-mid { 2 | background: transparent url(tab_inact_mid.png) repeat-x; 3 | line-height: -25px; 4 | cursor: pointer; 5 | -moz-user-select: none; 6 | } 7 | 8 | .AssetLineageWidgetType-item { 9 | float: left; 10 | list-style: none; 11 | height: 22px; 12 | cursor: pointer; 13 | } 14 | -------------------------------------------------------------------------------- /src/Standards/MySource/Tests/Debug/DebugCodeUnitTest.inc: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/Standards/MySource/Tests/Debug/FirebugConsoleUnitTest.js: -------------------------------------------------------------------------------- 1 | console.info(); 2 | console.warn(); 3 | console.test(); 4 | con.sole(); 5 | var console = { 6 | console: 'string'; 7 | }; 8 | function console() {} -------------------------------------------------------------------------------- /src/Standards/MySource/Tests/Objects/DisallowNewWidgetUnitTest.inc: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /src/Standards/MySource/Tests/PHP/ReturnFunctionValueUnitTest.inc: -------------------------------------------------------------------------------- 1 | myFunction(); 5 | return $obj->variable; 6 | return MyClass::VARIABLE; 7 | return $variable; 8 | return ($var + 1); 9 | ?> -------------------------------------------------------------------------------- /src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | define("MAXSIZE", 100); 3 | -------------------------------------------------------------------------------- /src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.14.inc: -------------------------------------------------------------------------------- 1 | define("MAXSIZE", 100); 3 | -------------------------------------------------------------------------------- /src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.15.inc: -------------------------------------------------------------------------------- 1 | defined('MINSIZE') or define("MAXSIZE", 100); 3 | -------------------------------------------------------------------------------- /src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.16.inc: -------------------------------------------------------------------------------- 1 | defined('MINSIZE') or define("MAXSIZE", 100); 3 | -------------------------------------------------------------------------------- /src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.17.inc: -------------------------------------------------------------------------------- 1 | 2 | '; 5 | } 6 | 7 | printHead(); 8 | ?> 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 13 | 14 |

15 | 16 | 14 | 15 |

16 | 17 | 4 | 4 | 2 |
  • My page
  • 3 |
  • Write
  • 4 |
  • Sign out
  • 5 | 6 |
  • Sign in
  • 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.15.inc: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.16.inc: -------------------------------------------------------------------------------- 1 | 4 | 3 | hi 4 | -------------------------------------------------------------------------------- /src/Standards/PSR12/Tests/Files/OpenTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.1.inc.fixed: -------------------------------------------------------------------------------- 1 | 6 | 7 | 2 | 3 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | A: 6 | B: 7 | C: -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.5.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.6.inc.fixed: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.7.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.12.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.13.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | 4 |

    5 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | */ 10 | 11 | readonly class Foo { 12 | } 13 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | */ 10 | 11 | echo 'hi'; -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.2.js: -------------------------------------------------------------------------------- 1 | /** 2 | * File comment. 3 | * 4 | * @package Package 5 | * @subpackage Subpackage 6 | * @author Squiz Pty Ltd 7 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 8 | */ 9 | 10 | print 'hi'; -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | * 10 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | */ 10 | 11 | class Foo { 12 | } 13 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | */ 10 | #[Attribute] 11 | class Foo { 12 | } 13 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.8.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | */ 10 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.9.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | */ 10 | 11 | enum Foo { 12 | } 13 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.2.js: -------------------------------------------------------------------------------- 1 | // Comment as first thing in a JS file. 2 | var i = 100; 3 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Functions/GlobalFunctionUnitTest.inc: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/DisallowInlineIfUnitTest.js: -------------------------------------------------------------------------------- 1 | x = (x?a:x); 2 | id = id.replace(/row\/:/gi, ''); 3 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/DisallowMultipleAssignmentsUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | = 0; i--) { 12 | var x = i; 13 | } 14 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/DiscouragedFunctionsUnitTest.inc: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.4.inc.fixed: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/EvalUnitTest.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/GlobalKeywordUnitTest.inc: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/HeredocUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | foo. 10 | Now, I am printing some {$foo->bar[1]}. 11 | This should not print a capital 'A': \x41 12 | EOT; 13 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | returndate == 0) ? 'Not returned' : date('d/m/Y', $loan_device->returndate); 11 | ?> 12 |

    13 |

    14 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/Strings/EchoedStringsUnitTest.inc.fixed: -------------------------------------------------------------------------------- 1 | returndate == 0) ? 'Not returned' : date('d/m/Y', $loan_device->returndate); 11 | ?> 12 |

    13 |

    14 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.inc: -------------------------------------------------------------------------------- 1 | 4 |

    5 | 6 |

    9 | 10 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 | 3 |

    4 | 5 |

    8 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.js: -------------------------------------------------------------------------------- 1 | alert('hi'); -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.js.fixed: -------------------------------------------------------------------------------- 1 | alert('hi'); -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.css: -------------------------------------------------------------------------------- 1 | .HelpWidgetType-new-bug-title { 2 | float: left; 3 | } 4 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.css.fixed: -------------------------------------------------------------------------------- 1 | .HelpWidgetType-new-bug-title { 2 | float: left; 3 | } -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.inc.fixed: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.js: -------------------------------------------------------------------------------- 1 | alert('hi'); 2 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.js.fixed: -------------------------------------------------------------------------------- 1 | alert('hi'); 2 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.4.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.5.inc: -------------------------------------------------------------------------------- 1 |    5 |   -------------------------------------------------------------------------------- /src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.5.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Debug/CodeAnalyzerUnitTest.inc: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.1.inc.fixed: -------------------------------------------------------------------------------- 1 | 6 | 7 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | add('arg'))?> 2 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc.fixed: -------------------------------------------------------------------------------- 1 | add('arg')); 2 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | add('arg')) /* comment */ ?> 2 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc.fixed: -------------------------------------------------------------------------------- 1 | add('arg')); /* comment */ 2 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | add('arg')); } ?> 2 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc.fixed: -------------------------------------------------------------------------------- 1 | add('arg')); } 2 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Standards/Zend/Tests/Files/ClosingTagUnitTest.7.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Core/Fixer/Fixtures/test.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/DocumentationTitleLengthStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/DocumentationTitlePCREFallbackStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/DocumentationTitleToAnchorSlug1Standard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/DocumentationTitleToAnchorSlug2Standard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/DocumentationTitleToAnchorSlug3Standard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Invalid/CodeComparisonNoContentStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/NoContentStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/NoDocumentationElementStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/OneStandardBlockNoCodeStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/TwoStandardBlocksNoCodeStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Unsupported/ElementAtWrongLevelStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Unsupported/UnknownElementStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/CodeComparisonBlankLinesSniff.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Core/Generators/NoDocsTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/Core/Generators/NoValidDocsTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/Core/Generators/OneDocTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/ConstructorNoSniffsTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | . 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/ExpandRulesetReferenceHomePathTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/ExpandRulesetReferenceInternalStandardTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/ExpandRulesetReferenceInvalidErrorCode1Test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/ExpandRulesetReferenceInvalidErrorCode2Test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/ExpandRulesetReferenceInvalidErrorCode3Test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/ExplainSingleSniffTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/AbstractSniff.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/Fixtures/ExternalA/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/Fixtures/ExternalB/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/Fixtures/FakeHomePath/src/MyStandard/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/Fixtures/InvalidNoSniffsDir/Sniffs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPCSStandards/PHP_CodeSniffer/30fdf53bfe0ff2740d26db85ebe89bb383357593/tests/Core/Ruleset/Fixtures/InvalidNoSniffsDir/Sniffs -------------------------------------------------------------------------------- /tests/Core/Ruleset/Fixtures/InvalidNoSniffsDir/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/Fixtures/ProcessRulesetAutoloadLoadAlways.1.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/ProcessRulesetBrokenRulesetEmptyFileTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPCSStandards/PHP_CodeSniffer/30fdf53bfe0ff2740d26db85ebe89bb383357593/tests/Core/Ruleset/ProcessRulesetBrokenRulesetEmptyFileTest.xml -------------------------------------------------------------------------------- /tests/Core/Ruleset/ProcessRulesetBrokenRulesetSingleErrorTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/Core/Ruleset/PropertyTypeHandlingInlineTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/Core/Tokenizers/Comment/LiveCoding1Test.inc: -------------------------------------------------------------------------------- 1 | >>>>>> master 12 | -------------------------------------------------------------------------------- /tests/Core/Tokenizers/PHP/PHPOpenTagEOF1Test.inc: -------------------------------------------------------------------------------- 1 | 4 | 4 | 4 |