]> git.mjollnir.org Git - moodle.git/commit
MDL-19247 Added the PHP CodeSniffer tool and lib/thirdpartylibs.xml
authornicolasconnault <nicolasconnault>
Tue, 19 May 2009 15:22:43 +0000 (15:22 +0000)
committernicolasconnault <nicolasconnault>
Tue, 19 May 2009 15:22:43 +0000 (15:22 +0000)
commitd35df1b54a2991af336f52b5ca158282e5023b19
tree42c53efdab43a347eb02bfbd29bf9befb10c2eea
parent1905b5f68db654ece33419ebd1c5a17a3249a8a0
MDL-19247 Added the PHP CodeSniffer tool and lib/thirdpartylibs.xml
67 files changed:
lib/pear/PHP/CodeSniffer.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CLI.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/AbstractDocElement.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/AbstractParser.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/ClassCommentParser.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/CommentElement.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/DocElement.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/FunctionCommentParser.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/MemberCommentParser.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/PairElement.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/ParameterElement.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/ParserException.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/CommentParser/SingleElement.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/DocGenerators/Generator.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/DocGenerators/HTML.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/DocGenerators/Text.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Exception.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/File.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Sniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/AbstractPatternSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/AbstractScopeSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/AbstractVariableSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/CodingStandard.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/IncorrectPatternException.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/MoodleCodingStandard.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Classes/ClassDeclarationSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/CodeAnalysis/EmptyStatementSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Commenting/ClassCommentSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Commenting/FileCommentSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Commenting/FunctionCommentSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Commenting/InlineCommentSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/ControlStructures/ControlSignatureSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/ControlStructures/InlineControlStructureSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Files/IncludingFileSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Files/LineEndingsSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Files/LineLengthSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Formatting/SpaceAfterCastSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Functions/FunctionCallSignatureSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Functions/FunctionDeclarationSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Functions/LowercaseFunctionKeywordsSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Functions/ValidDefaultValueSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/NamingConventions/ValidClassNameSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/NamingConventions/ValidFunctionNameSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/NamingConventions/ValidVariableNameSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/PHP/DisallowShortOpenTagSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/PHP/LowerCaseConstantSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/PHP/LowercasePHPFunctionsSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Strings/DoubleQuoteUsageSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/Strings/EchoedStringsSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/WhiteSpace/DisallowTabIndentSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/WhiteSpace/MemberVarSpacingSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Standards/Moodle/Sniffs/WhiteSpace/ScopeIndentSniff.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Tokenizers/JS.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Tokenizers/PHP.php [new file with mode: 0644]
lib/pear/PHP/CodeSniffer/Tokens.php [new file with mode: 0644]
lib/thirdpartylibs.xml [new file with mode: 0644]
phpcs [new file with mode: 0755]