6.0.0-alpha10
▾
Tasks
New Task
Search
Photos
Wiki
▾
Tickets
New Ticket
Search
dev.horde.org
Toggle Alerts Log
Help
5/16/25
H
istory
A
ttachments
C
omment
W
atch
Download
Comment on [#7] Spell Checker for Imp
*
Your Email Address
*
Spam protection
Enter the letters below:
. ..___..___.. ..__. |\ | _/ _/ | |[__] | \|./__../__.|/\|| |
Comment
> Changes have been made in Git (master): > > commit 12107f097c04cb9af4a62e53beffcfdd3201a02f > Author: Jan Schneider <jan@horde.org> > Date: Sat Oct 25 18:35:43 2014 +0200 > > Bundle PHPMD. > > components/bundle/composer.json | 5 + > components/bundle/composer.lock | 247 + > components/bundle/vendor/autoload.php | 7 + > components/bundle/vendor/bin/pdepend | 1 + > components/bundle/vendor/bin/phpmd | 1 + > components/bundle/vendor/composer/ClassLoader.php | 383 ++ > .../bundle/vendor/composer/autoload_classmap.php | 9 + > .../bundle/vendor/composer/autoload_namespaces.php | 14 + > .../bundle/vendor/composer/autoload_psr4.php | 9 + > .../bundle/vendor/composer/autoload_real.php | 50 + > components/bundle/vendor/composer/installed.json | 240 + > components/bundle/vendor/pdepend/pdepend/CHANGELOG | 416 ++ > components/bundle/vendor/pdepend/pdepend/LICENSE | 31 + > .../bundle/vendor/pdepend/pdepend/build.properties | 24 + > .../bundle/vendor/pdepend/pdepend/composer.json | 21 + > .../vendor/pdepend/pdepend/scripts/compare.sh | 13 + > .../pdepend/pdepend/scripts/update-version.php | 186 + > .../bundle/vendor/pdepend/pdepend/src/bin/pdepend | 72 + > .../vendor/pdepend/pdepend/src/bin/pdepend.bat | 46 + > .../vendor/pdepend/pdepend/src/bin/pdepend.php | 67 + > .../pdepend/pdepend/src/conf/phar_bootstrap.stub | 61 + > .../pdepend/src/main/php/PDepend/Application.php | 198 + > .../src/main/php/PDepend/DbusUI/ResultPrinter.php | 198 + > .../Compiler/ProcessListenerPass.php | 69 + > .../PDepend/DependencyInjection/Configuration.php | 120 + > .../php/PDepend/DependencyInjection/Extension.php | 136 + > .../DependencyInjection/ExtensionManager.php | 93 + > .../DependencyInjection/PdependExtension.php | 127 + > .../pdepend/src/main/php/PDepend/Engine.php | 688 ++ > .../src/main/php/PDepend/Input/CompositeFilter.php | 89 + > .../main/php/PDepend/Input/ExcludePathFilter.php | 123 + > .../src/main/php/PDepend/Input/ExtensionFilter.php | 84 + > .../pdepend/src/main/php/PDepend/Input/Filter.php | 61 + > .../src/main/php/PDepend/Input/Iterator.php | 118 + > .../main/php/PDepend/Metrics/AbstractAnalyzer.php | 147 + > .../PDepend/Metrics/AbstractCachingAnalyzer.php | 137 + > .../main/php/PDepend/Metrics/AggregateAnalyzer.php | 69 + > .../src/main/php/PDepend/Metrics/Analyzer.php | 96 + > .../Metrics/Analyzer/ClassLevelAnalyzer.php | 409 ++ > .../PDepend/Metrics/Analyzer/CodeRankAnalyzer.php | 236 + > .../CodeRankAnalyzer/CodeRankStrategyI.php | 61 + > .../CodeRankAnalyzer/InheritanceStrategy.php | 151 + > .../Analyzer/CodeRankAnalyzer/MethodStrategy.php | 148 + > .../Analyzer/CodeRankAnalyzer/PropertyStrategy.php | 130 + > .../Analyzer/CodeRankAnalyzer/StrategyFactory.php | 125 + > .../PDepend/Metrics/Analyzer/CohesionAnalyzer.php | 155 + > .../PDepend/Metrics/Analyzer/CouplingAnalyzer.php | 455 ++ > .../PDepend/Metrics/Analyzer/CrapIndexAnalyzer.php | 272 + > .../Analyzer/CyclomaticComplexityAnalyzer.php | 464 ++ > .../Metrics/Analyzer/DependencyAnalyzer.php | 480 ++ > .../PDepend/Metrics/Analyzer/HierarchyAnalyzer.php | 318 + > .../Metrics/Analyzer/InheritanceAnalyzer.php | 355 ++ > .../Metrics/Analyzer/NPathComplexityAnalyzer.php | 567 ++ > .../PDepend/Metrics/Analyzer/NodeCountAnalyzer.php | 329 + > .../PDepend/Metrics/Analyzer/NodeLocAnalyzer.php | 485 ++ > .../php/PDepend/Metrics/AnalyzerCacheAware.php | 66 + > .../main/php/PDepend/Metrics/AnalyzerFactory.php | 88 + > .../php/PDepend/Metrics/AnalyzerFilterAware.php | 56 + > .../main/php/PDepend/Metrics/AnalyzerIterator.php | 75 + > .../main/php/PDepend/Metrics/AnalyzerListener.php | 71 + > .../main/php/PDepend/Metrics/AnalyzerNodeAware.php | 72 + > .../php/PDepend/Metrics/AnalyzerProjectAware.php | 70 + > .../src/main/php/PDepend/ProcessListener.php | 120 + > .../main/php/PDepend/Report/CodeAwareGenerator.php | 62 + > .../main/php/PDepend/Report/FileAwareGenerator.php | 61 + > .../src/main/php/PDepend/Report/Jdepend/Chart.php | 248 + > .../src/main/php/PDepend/Report/Jdepend/Xml.php | 351 + > .../src/main/php/PDepend/Report/Jdepend/chart.svg | 587 ++ > .../php/PDepend/Report/NoLogOutputException.php | 66 + > .../main/php/PDepend/Report/Overview/Pyramid.php | 333 + > .../main/php/PDepend/Report/Overview/pyramid.svg | 769 +++ > .../main/php/PDepend/Report/ReportGenerator.php | 79 + > .../php/PDepend/Report/ReportGeneratorFactory.php | 118 + > .../src/main/php/PDepend/Report/Summary/Xml.php | 415 ++ > .../PDepend/Source/AST/ASTAllocationExpression.php | 82 + > .../main/php/PDepend/Source/AST/ASTArguments.php | 80 + > .../src/main/php/PDepend/Source/AST/ASTArray.php | 78 + > .../php/PDepend/Source/AST/ASTArrayElement.php | 112 + > .../PDepend/Source/AST/ASTArrayIndexExpression.php | 80 + > .../main/php/PDepend/Source/AST/ASTArtifact.php | 76 + > .../php/PDepend/Source/AST/ASTArtifactList.php | 228 + > .../Source/AST/ASTArtifactList/ArtifactFilter.php | 63 + > .../ASTArtifactList/CollectionArtifactFilter.php | 120 + > .../AST/ASTArtifactList/NullArtifactFilter.php | 66 + > .../AST/ASTArtifactList/PackageArtifactFilter.php | 102 + > .../PDepend/Source/AST/ASTAssignmentExpression.php | 67 + > .../PDepend/Source/AST/ASTBooleanAndExpression.php | 69 + > .../PDepend/Source/AST/ASTBooleanOrExpression.php | 69 + > .../php/PDepend/Source/AST/ASTBreakStatement.php | 83 + > .../php/PDepend/Source/AST/ASTCastExpression.php | 181 + > .../php/PDepend/Source/AST/ASTCatchStatement.php | 67 + > .../src/main/php/PDepend/Source/AST/ASTClass.php | 204 + > .../php/PDepend/Source/AST/ASTClassFqnPostfix.php | 81 + > ...assOrInterfaceRecursiveInheritanceException.php | 71 + > .../Source/AST/ASTClassOrInterfaceReference.php | 126 + > .../AST/ASTClassOrInterfaceReferenceIterator.php | 89 + > .../php/PDepend/Source/AST/ASTClassReference.php | 83 + > .../php/PDepend/Source/AST/ASTCloneExpression.php | 69 + > .../src/main/php/PDepend/Source/AST/ASTClosure.php | 145 + > .../src/main/php/PDepend/Source/AST/ASTComment.php | 67 + > .../php/PDepend/Source/AST/ASTCompilationUnit.php | 404 ++ > .../AST/ASTCompilationUnitNotFoundException.php | 65 + > .../PDepend/Source/AST/ASTCompoundExpression.php | 83 + > .../php/PDepend/Source/AST/ASTCompoundVariable.php | 79 + > .../Source/AST/ASTConditionalExpression.php | 75 + > .../main/php/PDepend/Source/AST/ASTConstant.php | 69 + > .../PDepend/Source/AST/ASTConstantDeclarator.php | 135 + > .../PDepend/Source/AST/ASTConstantDefinition.php | 77 + > .../php/PDepend/Source/AST/ASTConstantPostfix.php | 74 + > .../PDepend/Source/AST/ASTContinueStatement.php | 83 + > .../php/PDepend/Source/AST/ASTDeclareStatement.php | 130 + > .../php/PDepend/Source/AST/ASTDoWhileStatement.php | 69 + > .../php/PDepend/Source/AST/ASTEchoStatement.php | 69 + > .../php/PDepend/Source/AST/ASTElseIfStatement.php | 84 + > .../php/PDepend/Source/AST/ASTEvalExpression.php | 69 + > .../php/PDepend/Source/AST/ASTExitExpression.php | 69 + > .../main/php/PDepend/Source/AST/ASTExpression.php | 69 + > .../php/PDepend/Source/AST/ASTFieldDeclaration.php | 181 + > .../php/PDepend/Source/AST/ASTFinallyStatement.php | 67 + > .../src/main/php/PDepend/Source/AST/ASTForInit.php | 73 + > .../php/PDepend/Source/AST/ASTForStatement.php | 69 + > .../main/php/PDepend/Source/AST/ASTForUpdate.php | 75 + > .../php/PDepend/Source/AST/ASTForeachStatement.php | 69 + > .../php/PDepend/Source/AST/ASTFormalParameter.php | 107 + > .../php/PDepend/Source/AST/ASTFormalParameters.php | 87 + > .../main/php/PDepend/Source/AST/ASTFunction.php | 176 + > .../php/PDepend/Source/AST/ASTFunctionPostfix.php | 79 + > .../php/PDepend/Source/AST/ASTGlobalStatement.php | 69 + > .../php/PDepend/Source/AST/ASTGotoStatement.php | 69 + > .../src/main/php/PDepend/Source/AST/ASTHeredoc.php | 87 + > .../main/php/PDepend/Source/AST/ASTIdentifier.php | 70 + > .../main/php/PDepend/Source/AST/ASTIfStatement.php | 81 + > .../PDepend/Source/AST/ASTIncludeExpression.php | 108 + > .../php/PDepend/Source/AST/ASTIndexExpression.php | 56 + > .../PDepend/Source/AST/ASTInstanceOfExpression.php | 69 + > .../main/php/PDepend/Source/AST/ASTInterface.php | 145 + > .../main/php/PDepend/Source/AST/ASTInvocation.php | 60 + > .../php/PDepend/Source/AST/ASTIssetExpression.php | 69 + > .../php/PDepend/Source/AST/ASTLabelStatement.php | 69 + > .../php/PDepend/Source/AST/ASTListExpression.php | 69 + > .../src/main/php/PDepend/Source/AST/ASTLiteral.php | 69 + > .../PDepend/Source/AST/ASTLogicalAndExpression.php | 69 + > .../PDepend/Source/AST/ASTLogicalOrExpression.php | 69 + > .../PDepend/Source/AST/ASTLogicalXorExpression.php | 69 + > .../PDepend/Source/AST/ASTMemberPrimaryPrefix.php | 99 + > .../src/main/php/PDepend/Source/AST/ASTMethod.php | 233 + > .../php/PDepend/Source/AST/ASTMethodPostfix.php | 79 + > .../main/php/PDepend/Source/AST/ASTNamespace.php | 319 + > .../src/main/php/PDepend/Source/AST/ASTNode.php | 540 ++ > .../main/php/PDepend/Source/AST/ASTParameter.php | 395 ++ > .../php/PDepend/Source/AST/ASTParentReference.php | 130 + > .../PDepend/Source/AST/ASTPostfixExpression.php | 69 + > .../Source/AST/ASTPreDecrementExpression.php | 69 + > .../Source/AST/ASTPreIncrementExpression.php | 69 + > .../php/PDepend/Source/AST/ASTPrimitiveType.php | 81 + > .../main/php/PDepend/Source/AST/ASTProperty.php | 369 ++ > .../php/PDepend/Source/AST/ASTPropertyPostfix.php | 83 + > .../PDepend/Source/AST/ASTRequireExpression.php | 108 + > .../php/PDepend/Source/AST/ASTReturnStatement.php | 83 + > .../src/main/php/PDepend/Source/AST/ASTScope.php | 69 + > .../php/PDepend/Source/AST/ASTScopeStatement.php | 69 + > .../php/PDepend/Source/AST/ASTSelfReference.php | 149 + > .../PDepend/Source/AST/ASTShiftLeftExpression.php | 83 + > .../PDepend/Source/AST/ASTShiftRightExpression.php | 83 + > .../main/php/PDepend/Source/AST/ASTStatement.php | 69 + > .../php/PDepend/Source/AST/ASTStaticReference.php | 86 + > .../Source/AST/ASTStaticVariableDeclaration.php | 83 + > .../src/main/php/PDepend/Source/AST/ASTString.php | 81 + > .../Source/AST/ASTStringIndexExpression.php | 75 + > .../main/php/PDepend/Source/AST/ASTSwitchLabel.php | 109 + > .../php/PDepend/Source/AST/ASTSwitchStatement.php | 67 + > .../php/PDepend/Source/AST/ASTThrowStatement.php | 69 + > .../src/main/php/PDepend/Source/AST/ASTTrait.php | 123 + > .../php/PDepend/Source/AST/ASTTraitAdaptation.php | 69 + > .../PDepend/Source/AST/ASTTraitAdaptationAlias.php | 140 + > .../Source/AST/ASTTraitAdaptationPrecedence.php | 69 + > .../AST/ASTTraitMethodCollisionException.php | 43 + > .../php/PDepend/Source/AST/ASTTraitReference.php | 83 + > .../PDepend/Source/AST/ASTTraitUseStatement.php | 212 + > .../php/PDepend/Source/AST/ASTTryStatement.php | 69 + > .../src/main/php/PDepend/Source/AST/ASTType.php | 90 + > .../main/php/PDepend/Source/AST/ASTTypeArray.php | 94 + > .../php/PDepend/Source/AST/ASTTypeCallable.php | 81 + > .../php/PDepend/Source/AST/ASTUnaryExpression.php | 83 + > .../php/PDepend/Source/AST/ASTUnsetStatement.php | 69 + > .../src/main/php/PDepend/Source/AST/ASTValue.php | 107 + > .../main/php/PDepend/Source/AST/ASTVariable.php | 87 + > .../PDepend/Source/AST/ASTVariableDeclarator.php | 114 + > .../php/PDepend/Source/AST/ASTVariableVariable.php | 83 + > .../php/PDepend/Source/AST/ASTWhileStatement.php | 69 + > .../php/PDepend/Source/AST/ASTYieldStatement.php | 83 + > .../php/PDepend/Source/AST/AbstractASTArtifact.php | 197 + > .../php/PDepend/Source/AST/AbstractASTCallable.php | 488 ++ > .../Source/AST/AbstractASTClassOrInterface.php | 368 ++ > .../php/PDepend/Source/AST/AbstractASTType.php | 504 ++ > .../src/main/php/PDepend/Source/AST/State.php | 92 + > .../PDepend/Source/ASTVisitor/ASTVisitListener.php | 208 + > .../php/PDepend/Source/ASTVisitor/ASTVisitor.php | 167 + > .../Source/ASTVisitor/AbstractASTVisitListener.php | 286 + > .../Source/ASTVisitor/AbstractASTVisitor.php | 519 ++ > .../main/php/PDepend/Source/Builder/Builder.php | 1227 ++++ > .../php/PDepend/Source/Builder/BuilderContext.php | 121 + > .../BuilderContext/GlobalBuilderContext.php | 174 + > .../Source/Language/PHP/AbstractPHPParser.php | 6694 > ++++++++++++++++++++ > .../php/PDepend/Source/Language/PHP/PHPBuilder.php | 2336 +++++++ > .../Source/Language/PHP/PHPParserGeneric.php | 349 + > .../Language/PHP/PHPTokenizerHelperVersion52.php | 128 + > .../Source/Language/PHP/PHPTokenizerInternal.php | 704 ++ > .../Source/Parser/InvalidStateException.php | 73 + > .../Source/Parser/MissingValueException.php | 78 + > .../php/PDepend/Source/Parser/ParserException.php | 53 + > .../main/php/PDepend/Source/Parser/SymbolTable.php | 140 + > .../php/PDepend/Source/Parser/TokenException.php | 56 + > .../main/php/PDepend/Source/Parser/TokenStack.php | 120 + > .../Source/Parser/TokenStreamEndException.php | 70 + > .../Source/Parser/UnexpectedTokenException.php | 73 + > .../main/php/PDepend/Source/Tokenizer/Token.php | 114 + > .../php/PDepend/Source/Tokenizer/Tokenizer.php | 188 + > .../main/php/PDepend/Source/Tokenizer/Tokens.php | 857 +++ > .../src/main/php/PDepend/TextUI/Command.php | 626 ++ > .../src/main/php/PDepend/TextUI/ResultPrinter.php | 232 + > .../pdepend/src/main/php/PDepend/TextUI/Runner.php | 347 + > .../main/php/PDepend/Util/Cache/CacheDriver.php | 110 + > .../main/php/PDepend/Util/Cache/CacheFactory.php | 143 + > .../Util/Cache/Driver/File/FileCacheDirectory.php | 226 + > .../PDepend/Util/Cache/Driver/FileCacheDriver.php | 273 + > .../Util/Cache/Driver/MemoryCacheDriver.php | 213 + > .../src/main/php/PDepend/Util/Configuration.php | 128 + > .../php/PDepend/Util/ConfigurationInstance.php | 80 + > .../php/PDepend/Util/Coverage/CloverReport.php | 151 + > .../src/main/php/PDepend/Util/Coverage/Factory.php | 92 + > .../src/main/php/PDepend/Util/Coverage/Report.php | 62 + > .../pdepend/src/main/php/PDepend/Util/FileUtil.php | 92 + > .../src/main/php/PDepend/Util/IdBuilder.php | 162 + > .../src/main/php/PDepend/Util/ImageConvert.php | 181 + > .../pdepend/src/main/php/PDepend/Util/Log.php | 110 + > .../pdepend/src/main/php/PDepend/Util/MathUtil.php | 87 + > .../pdepend/src/main/php/PDepend/Util/Type.php | 407 ++ > .../src/main/php/PDepend/Util/Workarounds.php | 90 + > .../src/main/resources/schema/configuration.xsd | 46 + > .../pdepend/src/main/resources/services.xml | 111 + > components/bundle/vendor/phpmd/phpmd/.gitignore | 5 + > components/bundle/vendor/phpmd/phpmd/.gitmodules | 3 + > components/bundle/vendor/phpmd/phpmd/.travis.yml | 23 + > components/bundle/vendor/phpmd/phpmd/AUTHORS.rst | 38 + > components/bundle/vendor/phpmd/phpmd/CHANGELOG | 137 + > components/bundle/vendor/phpmd/phpmd/LICENSE | 31 + > components/bundle/vendor/phpmd/phpmd/README.rst | 116 + > .../bundle/vendor/phpmd/phpmd/build.properties | 17 + > components/bundle/vendor/phpmd/phpmd/build.xml | 108 + > components/bundle/vendor/phpmd/phpmd/composer.json | 24 + > components/bundle/vendor/phpmd/phpmd/composer.lock | 218 + > .../bundle/vendor/phpmd/phpmd/phpunit.xml.dist | 13 + > components/bundle/vendor/phpmd/phpmd/src/bin/phpmd | 122 + > .../bundle/vendor/phpmd/phpmd/src/bin/phpmd.bat | 45 + > .../phpmd/phpmd/src/conf/phar_bootstrap.stub | 21 + > .../phpmd/src/main/php/PHPMD/AbstractNode.php | 302 + > .../phpmd/src/main/php/PHPMD/AbstractRenderer.php | 115 + > .../phpmd/src/main/php/PHPMD/AbstractRule.php | 427 ++ > .../phpmd/src/main/php/PHPMD/AbstractWriter.php | 64 + > .../phpmd/src/main/php/PHPMD/Node/ASTNode.php | 143 + > .../main/php/PHPMD/Node/AbstractCallableNode.php | 78 + > .../phpmd/src/main/php/PHPMD/Node/AbstractNode.php | 80 + > .../src/main/php/PHPMD/Node/AbstractTypeNode.php | 129 + > .../phpmd/src/main/php/PHPMD/Node/Annotation.php | 119 + > .../phpmd/src/main/php/PHPMD/Node/Annotations.php | 104 + > .../phpmd/src/main/php/PHPMD/Node/ClassNode.php | 73 + > .../phpmd/src/main/php/PHPMD/Node/FunctionNode.php | 89 + > .../src/main/php/PHPMD/Node/InterfaceNode.php | 68 + > .../phpmd/src/main/php/PHPMD/Node/MethodNode.php | 169 + > .../phpmd/src/main/php/PHPMD/Node/TraitNode.php | 68 + > .../phpmd/phpmd/src/main/php/PHPMD/PHPMD.php | 243 + > .../phpmd/phpmd/src/main/php/PHPMD/Parser.php | 313 + > .../phpmd/src/main/php/PHPMD/ParserFactory.php | 180 + > .../phpmd/src/main/php/PHPMD/ProcessingError.php | 122 + > .../src/main/php/PHPMD/Renderer/HTMLRenderer.php | 188 + > .../src/main/php/PHPMD/Renderer/TextRenderer.php | 92 + > .../src/main/php/PHPMD/Renderer/XMLRenderer.php | 162 + > .../phpmd/phpmd/src/main/php/PHPMD/Report.php | 207 + > .../vendor/phpmd/phpmd/src/main/php/PHPMD/Rule.php | 235 + > .../main/php/PHPMD/Rule/AbstractLocalVariable.php | 195 + > .../phpmd/src/main/php/PHPMD/Rule/ClassAware.php | 57 + > .../PHPMD/Rule/CleanCode/BooleanArgumentFlag.php | 89 + > .../php/PHPMD/Rule/CleanCode/ElseExpression.php | 101 + > .../main/php/PHPMD/Rule/CleanCode/StaticAccess.php | 105 + > .../Rule/Controversial/CamelCaseClassName.php | 82 + > .../Rule/Controversial/CamelCaseMethodName.php | 108 + > .../Rule/Controversial/CamelCaseParameterName.php | 84 + > .../Rule/Controversial/CamelCasePropertyName.php | 83 + > .../Rule/Controversial/CamelCaseVariableName.php | 104 + > .../php/PHPMD/Rule/Controversial/Superglobals.php | 97 + > .../main/php/PHPMD/Rule/CyclomaticComplexity.php | 86 + > .../PHPMD/Rule/Design/CouplingBetweenObjects.php | 77 + > .../php/PHPMD/Rule/Design/DepthOfInheritance.php | 84 + > .../main/php/PHPMD/Rule/Design/EvalExpression.php | 75 + > .../main/php/PHPMD/Rule/Design/ExitExpression.php | 75 + > .../main/php/PHPMD/Rule/Design/GotoStatement.php | 77 + > .../src/main/php/PHPMD/Rule/Design/LongClass.php | 85 + > .../src/main/php/PHPMD/Rule/Design/LongMethod.php | 90 + > .../php/PHPMD/Rule/Design/LongParameterList.php | 87 + > .../main/php/PHPMD/Rule/Design/NpathComplexity.php | 88 + > .../php/PHPMD/Rule/Design/NumberOfChildren.php | 84 + > .../main/php/PHPMD/Rule/Design/TooManyFields.php | 85 + > .../main/php/PHPMD/Rule/Design/TooManyMethods.php | 128 + > .../php/PHPMD/Rule/Design/WeightedMethodCount.php | 80 + > .../main/php/PHPMD/Rule/ExcessivePublicCount.php | 85 + > .../src/main/php/PHPMD/Rule/FunctionAware.php | 57 + > .../src/main/php/PHPMD/Rule/InterfaceAware.php | 57 + > .../phpmd/src/main/php/PHPMD/Rule/MethodAware.php | 57 + > .../php/PHPMD/Rule/Naming/BooleanGetMethodName.php | 129 + > .../Rule/Naming/ConstantNamingConventions.php | 78 + > .../Naming/ConstructorWithNameAsEnclosingClass.php | 80 + > .../main/php/PHPMD/Rule/Naming/LongVariable.php | 207 + > .../main/php/PHPMD/Rule/Naming/ShortMethodName.php | 85 + > .../main/php/PHPMD/Rule/Naming/ShortVariable.php | 232 + > .../main/php/PHPMD/Rule/UnusedFormalParameter.php | 196 + > .../main/php/PHPMD/Rule/UnusedLocalVariable.php | 211 + > .../src/main/php/PHPMD/Rule/UnusedPrivateField.php | 220 + > .../main/php/PHPMD/Rule/UnusedPrivateMethod.php | 166 + > .../php/PHPMD/RuleClassFileNotFoundException.php | 67 + > .../main/php/PHPMD/RuleClassNotFoundException.php | 66 + > .../phpmd/phpmd/src/main/php/PHPMD/RuleSet.php | 301 + > .../phpmd/src/main/php/PHPMD/RuleSetFactory.php | 527 ++ > .../main/php/PHPMD/RuleSetNotFoundException.php | 66 + > .../phpmd/src/main/php/PHPMD/RuleViolation.php | 241 + > .../phpmd/src/main/php/PHPMD/TextUI/Command.php | 188 + > .../main/php/PHPMD/TextUI/CommandLineOptions.php | 500 ++ > .../src/main/php/PHPMD/Writer/StreamWriter.php | 110 + > .../src/main/resources/rulesets/cleancode.xml | 97 + > .../phpmd/src/main/resources/rulesets/codesize.xml | 397 ++ > .../src/main/resources/rulesets/controversial.xml | 149 + > .../phpmd/src/main/resources/rulesets/design.xml | 193 + > .../phpmd/src/main/resources/rulesets/naming.xml | 362 ++ > .../src/main/resources/rulesets/unusedcode.xml | 99 + > .../vendor/phpmd/phpmd/src/site/docx/changes.xml | 458 ++ > .../phpmd/src/site/resources/config/authors.ini | 13 + > .../phpmd/src/site/resources/config/binaries.ini | 40 + > .../src/site/resources/config/content/blog.ini | 27 + > .../src/site/resources/config/display/sitemap.ini | 37 + > .../phpmd/src/site/resources/config/handlers.ini | 50 + > .../phpmd/src/site/resources/config/metadata.ini | 18 + > .../phpmd/phpmd/src/site/resources/config/site.ini | 76 + > .../src/site/resources/override/html/footer.ezt | 36 + > .../src/site/resources/override/html/formats.ezt | 21 + > .../src/site/resources/override/html/layout.ezt | 111 + > .../site/resources/override/html/navigation.ezt | 5 + > .../resources/override/html/navigation/item.ezt | 15 + > .../src/site/resources/override/html/release.ezt | 6 + > .../phpmd/src/site/resources/web/css/print.css | 36 + > .../phpmd/src/site/resources/web/css/screen.css | 251 + > .../phpmd/phpmd/src/site/resources/web/favicon.ico | Bin 0 -> 1150 bytes > .../phpmd/src/site/resources/web/images/box.png | Bin 0 -> 23974 bytes > .../phpmd/src/site/resources/web/images/logo.png | Bin 0 -> 23849 bytes > .../vendor/phpmd/phpmd/src/site/rst/.index.xml | 31 + > .../vendor/phpmd/phpmd/src/site/rst/about.rst | 32 + > .../phpmd/src/site/rst/documentation/.index.xml | 22 + > .../phpmd/src/site/rst/documentation/ant-task.rst | 113 + > .../site/rst/documentation/creating-a-ruleset.rst | 197 + > .../phpmd/src/site/rst/documentation/index.rst | 108 + > .../site/rst/documentation/suppress-warnings.rst | 71 + > .../rst/documentation/writing-a-phpmd-rule.rst | 418 ++ > .../phpmd/phpmd/src/site/rst/download/.index.xml | 18 + > .../src/site/rst/download/extensions/.index.xml | 6 + > .../src/site/rst/download/extensions/index.rst | 63 + > .../phpmd/phpmd/src/site/rst/download/index.rst | 62 + > .../src/site/rst/download/releases/.index.xml | 24 + > .../site/rst/download/releases/1.0.0/.index.xml | 7 + > .../site/rst/download/releases/1.0.0/changelog.rst | 30 + > .../site/rst/download/releases/1.0.1/.index.xml | 7 + > .../site/rst/download/releases/1.0.1/changelog.rst | 33 + > .../site/rst/download/releases/1.1.0/.index.xml | 7 + > .../site/rst/download/releases/1.1.0/changelog.rst | 56 + > .../site/rst/download/releases/1.1.1/.index.xml | 7 + > .../site/rst/download/releases/1.1.1/changelog.rst | 28 + > .../phpmd/src/site/rst/download/releases/index.rst | 7 + > .../phpmd/phpmd/src/site/rst/people-behind.rst | 85 + > .../vendor/phpmd/phpmd/src/site/rst/robots.txt | 35 + > .../phpmd/phpmd/src/site/rst/rules/.index.xml | 27 + > .../phpmd/phpmd/src/site/rst/rules/cleancode.rst | 72 + > .../phpmd/phpmd/src/site/rst/rules/codesize.rst | 282 + > .../phpmd/src/site/rst/rules/controversial.rst | 102 + > .../phpmd/phpmd/src/site/rst/rules/design.rst | 161 + > .../phpmd/phpmd/src/site/rst/rules/index.rst | 112 + > .../phpmd/phpmd/src/site/rst/rules/naming.rst | 160 + > .../phpmd/phpmd/src/site/rst/rules/unusedcode.rst | 84 + > .../phpmd/phpmd/src/site/rst/support/.index.xml | 6 + > .../phpmd/phpmd/src/site/rst/support/index.rst | 40 + > .../vendor/phpmd/phpmd/src/site/scripts/pmd.xsl | 279 + > .../phpmd/phpmd/src/site/scripts/update-rules.php | 143 + > .../phpmd/src/test/php/PHPMD/AbstractTest.php | 562 ++ > .../Integration/CommandLineInputFileOptionTest.php | 119 + > .../CouplingBetweenObjectsIntegrationTest.php | 93 + > .../Integration/GotoStatementIntegrationTest.php | 89 + > .../phpmd/src/test/php/PHPMD/Node/ASTNodeTest.php | 134 + > .../src/test/php/PHPMD/Node/AnnotationTest.php | 149 + > .../src/test/php/PHPMD/Node/AnnotationsTest.php | 140 + > .../src/test/php/PHPMD/Node/ClassNodeTest.php | 96 + > .../phpmd/src/test/php/PHPMD/Node/FunctionTest.php | 92 + > .../src/test/php/PHPMD/Node/MethodNodeTest.php | 219 + > .../phpmd/phpmd/src/test/php/PHPMD/PMDTest.php | 195 + > .../phpmd/src/test/php/PHPMD/ParserFactoryTest.php | 198 + > .../phpmd/phpmd/src/test/php/PHPMD/ParserTest.php | 259 + > .../src/test/php/PHPMD/ProcessingErrorTest.php | 113 + > .../src/test/php/PHPMD/Regression/AbstractTest.php | 78 + > ...eptsFilesAndDirectoriesAsInputTicket001Test.php | 107 + > ...vePublicCountRuleNeverExecutedTicket015Test.php | 83 + > ...ocalVariableAndFormalParameterTicket007Test.php | 87 + > ...ariablePrivatePropertiesTicket010096717Test.php | 93 + > .../MaximumNestingLevelTicket24975295Test.php | 91 + > ...StaticVariablesFlaggedAsUnusedTicket020Test.php | 74 + > .../SuperGlobalsFlaggedAsUnusedTicket019Test.php | 74 + > ...ningsNotAppliesToUnusedPrivateMethod036Test.php | 77 + > .../UnusedParameterArgvTicket14990109Test.php | 96 + > .../test/php/PHPMD/Renderer/HTMLRendererTest.php | 147 + > .../test/php/PHPMD/Renderer/TextRendererTest.php | 145 + > .../test/php/PHPMD/Renderer/XMLRendererTest.php | 140 + > .../phpmd/phpmd/src/test/php/PHPMD/ReportTest.php | 217 + > .../PHPMD/Rule/CleanCode/ElseExpressionTest.php | 29 + > .../php/PHPMD/Rule/CleanCode/StaticAccessTest.php | 43 + > .../Rule/Controversial/CamelCaseMethodNameTest.php | 163 + > .../php/PHPMD/Rule/CyclomaticComplexityTest.php | 114 + > .../Rule/Design/CouplingBetweenObjectsTest.php | 103 + > .../PHPMD/Rule/Design/DepthOfInheritanceTest.php | 103 + > .../php/PHPMD/Rule/Design/EvalExpressionTest.php | 136 + > .../php/PHPMD/Rule/Design/ExitExpressionTest.php | 136 + > .../php/PHPMD/Rule/Design/GotoStatementTest.php | 116 + > .../test/php/PHPMD/Rule/Design/LongClassTest.php | 135 + > .../test/php/PHPMD/Rule/Design/LongMethodTest.php | 135 + > .../PHPMD/Rule/Design/LongParameterListTest.php | 181 + > .../php/PHPMD/Rule/Design/NpathComplexityTest.php | 115 + > .../php/PHPMD/Rule/Design/NumberOfChildrenTest.php | 103 + > .../php/PHPMD/Rule/Design/TooManyFieldsTest.php | 103 + > .../php/PHPMD/Rule/Design/TooManyMethodsTest.php | 175 + > .../PHPMD/Rule/Design/WeightedMethodCountTest.php | 113 + > .../php/PHPMD/Rule/ExcessivePublicCountTest.php | 102 + > .../PHPMD/Rule/Naming/BooleanGetMethodNameTest.php | 184 + > .../Rule/Naming/ConstantNamingConventionsTest.php | 112 + > .../ConstructorWithNameAsEnclosingClassTest.php | 100 + > .../php/PHPMD/Rule/Naming/LongVariableTest.php | 336 + > .../php/PHPMD/Rule/Naming/ShortMethodNameTest.php | 141 + > .../php/PHPMD/Rule/Naming/ShortVariableTest.php | 384 ++ > .../php/PHPMD/Rule/UnusedFormalParameterTest.php | 469 ++ > .../php/PHPMD/Rule/UnusedLocalVariableTest.php | 550 ++ > .../test/php/PHPMD/Rule/UnusedPrivateFieldTest.php | 305 + > .../php/PHPMD/Rule/UnusedPrivateMethodTest.php | 264 + > .../src/test/php/PHPMD/RuleSetFactoryTest.php | 669 ++ > .../phpmd/phpmd/src/test/php/PHPMD/RuleSetTest.php | 135 + > .../phpmd/phpmd/src/test/php/PHPMD/RuleTest.php | 174 + > .../phpmd/src/test/php/PHPMD/RuleViolationTest.php | 110 + > .../src/test/php/PHPMD/Stubs/ClassNotFoundRule.php | 2 + > .../phpmd/src/test/php/PHPMD/Stubs/RuleStub.php | 89 + > .../phpmd/src/test/php/PHPMD/Stubs/WriterStub.php | 97 + > .../php/PHPMD/TextUI/CommandLineOptionsTest.php | 246 + > .../src/test/php/PHPMD/TextUI/CommandTest.php | 106 + > .../vendor/phpmd/phpmd/src/test/php/bootstrap.php | 54 + > .../CommandLineInputFileOption/Class1.php | 7 + > .../CommandLineInputFileOption/Class2.php | 6 + > .../CommandLineInputFileOption/Class3.php | 7 + > .../CommandLineInputFileOption/inputfile.txt | 2 + > ...ReportContainsCouplingBetweenObjectsWarning.php | 105 + > .../testReportContainsGotoStatementWarning.php | 10 + > ...testGetParentTypeReturnsClassForClassMethod.php | 15 + > ...arentTypeReturnsInterfaceForInterfaceMethod.php | 9 + > ...uppressWarningsDelegatesToParentClassMethod.php | 16 + > ...essWarningsDelegatesToParentInterfaceMethod.php | 16 + > ...ppressWarningsExecutesDefaultImplementation.php | 22 + > ...ionReturnsFalseForImplementedAbstractMethod.php | 14 + > ...onReturnsFalseForImplementedInterfaceMethod.php | 14 + > ...tionReturnsFalseForInheritMethodDeclaration.php | 17 + > ...sDeclarationReturnsTrueForMethodDeclaration.php | 8 + > ...onReturnsTrueForMethodDeclarationWithParent.php | 17 + > .../files/ParserFactory/Directory/Test.php | 5 + > .../resources/files/ParserFactory/File/Test.php | 5 + > .../files/Regression/001/source/FooBar.php | 5 + > ...meterUsedInDoubleQuoteStringGetsNotReported.php | 8 + > ...iableUsedInDoubleQuoteStringGetsNotReported.php | 10 + > .../testRuleNotAppliesForLongPrivateProperty.php | 5 + > ...tRuleNotAppliesForLongPrivateStaticProperty.php | 5 + > .../015/testRuleSetInvokesRuleForClassInstance.php | 5 + > ...estRuleDoesNotApplyToAnySuperGlobalVariable.php | 19 + > ...estRuleDoesNotApplyToAnyStaticLocalVariable.php | 11 + > ...PrivateMethodWithSuppressWarningsAnnotation.php | 11 + > ...uleDoesNotApplyToFunctionParameterNamedArgv.php | 8 + > ...tRuleDoesNotApplyToMethodParameterNamedArgv.php | 11 + > ...iableUsedInDoubleQuoteStringGetsNotReported.php | 85 + > ...pleTimesToMethodWithMultipleElseExpressions.php | 17 + > .../testRuleAppliesToMethodWithElseExpression.php | 11 + > ...RuleNotAppliesToMethodWithoutElseExpression.php | 11 + > .../testRuleAppliesToStaticMethodAccess.php | 9 + > .../testRuleNotAppliesToConstantAccess.php | 9 + > .../testRuleNotAppliesToDynamicMethodCall.php | 10 + > .../testRuleNotAppliesToParentStaticCall.php | 9 + > .../testRuleNotAppliesToSelfStaticCall.php | 11 + > .../testRuleDoesApplyForMethodNameWithCapital.php | 8 + > ...stRuleDoesApplyForMethodNameWithUnderscores.php | 8 + > ...ValidMethodNameWithUnderscoreWhenNotAllowed.php | 8 + > .../testRuleDoesNotApplyForValidMethodName.php | 8 + > ...ForValidMethodNameWithUnderscoreWhenAllowed.php | 8 + > ...esMultipleTimesToFunctionWithEvalExpression.php | 10 + > ...liesMultipleTimesToMethodWithEvalExpression.php | 13 + > ...testRuleAppliesToFunctionWithEvalExpression.php | 5 + > .../testRuleAppliesToMethodWithEvalExpression.php | 8 + > ...leNotAppliesToFunctionWithoutEvalExpression.php | 5 + > ...RuleNotAppliesToMethodWithoutEvalExpression.php | 8 + > ...esMultipleTimesToFunctionWithExitExpression.php | 10 + > ...liesMultipleTimesToMethodWithExitExpression.php | 13 + > ...testRuleAppliesToFunctionWithExitExpression.php | 5 + > .../testRuleAppliesToMethodWithExitExpression.php | 8 + > ...leNotAppliesToFunctionWithoutExitExpression.php | 5 + > ...RuleNotAppliesToMethodWithoutExitExpression.php | 8 + > .../testRuleAppliesToFunctionWithGotoStatement.php | 10 + > .../testRuleAppliesToMethodWithGotoStatement.php | 13 + > ...uleNotAppliesToFunctionWithoutGotoStatement.php | 5 + > ...tRuleNotAppliesToMethodWithoutGotoStatement.php | 8 + > ...liesToMethodStartingWithGetAndReturningBool.php | 8 + > ...sToMethodStartingWithGetAndReturningBoolean.php | 11 + > ...ateMethodStartingWithGetAndReturningBoolean.php | 11 + > ...eIgnoresParametersWhenNotExplicitConfigured.php | 8 + > .../testRuleNotAppliesToMethodStartingWithHas.php | 8 + > .../testRuleNotAppliesToMethodStartingWithIs.php | 8 + > ...eNotAppliesToMethodWithReturnTypeNotBoolean.php | 8 + > ...eNotAppliesWhenParametersAreExplicitEnabled.php | 8 + > ...pliesToClassConstantWithLowerCaseCharacters.php | 7 + > ...sToInterfaceConstantWithLowerCaseCharacters.php | 5 + > ...pliesToClassConstantWithUpperCaseCharacters.php | 7 + > ...sToInterfaceConstantWithUpperCaseCharacters.php | 9 + > ...iesToConstructorMethodNamedAsEnclosingClass.php | 8 + > ...rMethodNamedAsEnclosingClassCaseInsensitive.php | 8 + > ...AppliesToMethodNamedSimilarToEnclosingClass.php | 8 + > ...ieldAndParameterWithNameLongerThanThreshold.php | 10 + > ...leAppliesToFieldWithNameLongerThanThreshold.php | 5 + > ...unctionParameterWithNameLongerThanThreshold.php | 5 + > ...stRuleAppliesToIdenticalVariableOnlyOneTime.php | 11 + > ...calVariablesInDifferentContextsSeveralTimes.php | 13 + > ...riableInFunctionWithNameLongerThanThreshold.php | 5 + > ...VariableInMethodWithNameLongerThanThreshold.php | 8 + > ...oMethodParameterWithNameLongerThanThreshold.php | 8 + > .../testRuleNotAppliesForLongPrivateProperty.php | 5 + > ...tRuleNotAppliesForLongPrivateStaticProperty.php | 5 + > ...leNotAppliesToFieldWithNameEqualToThreshold.php | 5 + > ...tAppliesToFieldWithNameShorterThanThreshold.php | 5 + > ...nctionParameterWithNameSmallerThanThreshold.php | 5 + > ...lVariableInFunctionWithNameEqualToThreshold.php | 5 + > ...iableInFunctionWithNameSmallerThanThreshold.php | 5 + > ...calVariableInMethodWithNameEqualToThreshold.php | 8 + > ...ariableInMethodWithNameShorterThanThreshold.php | 8 + > ...MethodParameterWithNameShorterThanThreshold.php | 8 + > ...leNotAppliesToStaticMembersAccessedInMethod.php | 10 + > ...pliesToFunctionWithNameShorterThanThreshold.php | 5 + > ...AppliesToMethodWithNameShorterThanThreshold.php | 8 + > ...otAppliesToFunctionWithNameEqualToThreshold.php | 5 + > ...ppliesToFunctionWithNameLongerThanThreshold.php | 5 + > ...eNotAppliesToMethodWithNameEqualToThreshold.php | 8 + > ...tAppliesToMethodWithNameLongerThanThreshold.php | 8 + > ...eldAndParameterWithNameShorterThanThreshold.php | 7 + > ...eAppliesToFieldWithNameShorterThanThreshold.php | 5 + > ...nctionParameterWithNameShorterThanThreshold.php | 5 + > ...stRuleAppliesToIdenticalVariableOnlyOneTime.php | 11 + > ...calVariablesInDifferentContextsSeveralTimes.php | 13 + > ...iableInFunctionWithNameShorterThanThreshold.php | 5 + > ...ariableInMethodWithNameShorterThanThreshold.php | 8 + > ...MethodParameterWithNameShorterThanThreshold.php | 5 + > ...leNotAppliesToFieldWithNameEqualToThreshold.php | 5 + > ...tAppliesToFieldWithNameGreaterThanThreshold.php | 5 + > ...unctionParameterWithNameLongerThanThreshold.php | 5 + > ...lVariableInFunctionWithNameEqualToThreshold.php | 5 + > ...riableInFunctionWithNameLongerThanThreshold.php | 5 + > ...calVariableInMethodWithNameEqualToThreshold.php | 8 + > ...VariableInMethodWithNameLongerThanThreshold.php | 8 + > ...oMethodParameterWithNameLongerThanThreshold.php | 5 + > ...NotAppliesToShortVariableNameAsForLoopIndex.php | 7 + > ...ppliesToShortVariableNameAsForeachLoopIndex.php | 7 + > ...tAppliesToShortVariableNameInCatchStatement.php | 7 + > ...leNotAppliesToStaticMembersAccessedInMethod.php | 10 + > ...RuleNotAppliesToVariablesFromExceptionsList.php | 11 + > ...lParameterWhenSimilarStaticMemberIsAccessed.php | 10 + > ...tRuleAppliesToFunctionUnusedFormalParameter.php | 5 + > ...estRuleAppliesToMethodUnusedFormalParameter.php | 8 + > ...liesToMultipleFunctionUnusedFormalParameter.php | 5 + > ...ppliesToMultipleMethodUnusedFormalParameter.php | 8 + > ...DoesNotApplyToAbstractMethodFormalParameter.php | 5 + > ...lyToFormalParameterUsedInCompoundExpression.php | 10 + > ...RuleDoesNotApplyToImplementedAbstractMethod.php | 14 + > ...uleDoesNotApplyToImplementedInterfaceMethod.php | 14 + > .../testRuleDoesNotApplyToInheritMethod.php | 17 + > ...tRuleDoesNotApplyToInnerFunctionDeclaration.php | 12 + > ...oesNotApplyToInterfaceMethodFormalParameter.php | 5 + > .../testRuleDoesNotApplyToMethodArgument.php | 8 + > ...oesNotApplyToMethodArgumentUsedAsArrayIndex.php | 10 + > ...testRuleDoesNotApplyToMethodWithFuncGetArgs.php | 8 + > ...oesNotApplyToMethodWithInheritdocAnnotation.php | 11 + > ...lyToMethodWithInheritdocAnnotationCamelCase.php | 11 + > ...RuleDoesNotApplyToParameterUsedAsArrayIndex.php | 8 + > ...uleDoesNotApplyToParameterUsedAsStringIndex.php | 8 + > ...FormalParameterUsedInMethodCompoundVariable.php | 8 + > ...rmalParameterUsedInPropertyCompoundVariable.php | 8 + > .../test_compact_function_rule_does_not_apply.php | 8 + > ...nction_rule_only_applies_to_used_parameters.php | 8 + > ...ompact_function_rule_works_case_insensitive.php | 8 + > ...t_func_get_args_rule_works_case_insensitive.php | 8 + > ...spaced_compact_function_rule_does_not_apply.php | 11 + > ...nction_rule_only_applies_to_used_parameters.php | 11 + > ...ompact_function_rule_works_case_insensitive.php | 11 + > ...rFunctionParametersDoNotHideUnusedVariables.php | 9 + > ...alVariableWithSameNameAsStaticArrayProperty.php | 11 + > ...ToLocalVariableWithSameNameAsStaticProperty.php | 10 + > .../testRuleAppliesToUnusedLocalVariable.php | 8 + > .../testRuleDoesNotApplyToArgcSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToArgvSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToCatchStatement.php | 11 + > .../testRuleDoesNotApplyToCompactFunction.php | 9 + > .../testRuleDoesNotApplyToCookieSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToDynamicProperty.php | 9 + > .../testRuleDoesNotApplyToEnvSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToFilesSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToGetSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToGlobalsSuperGlobal.php | 8 + > ...uleDoesNotApplyToHttpRawPostDataSuperGlobal.php | 8 + > ...DoesNotApplyToLocalVariableUsedAsArrayIndex.php | 10 + > ...oesNotApplyToLocalVariableUsedAsStringIndex.php | 10 + > ...tApplyToLocalVariableUsedInCompoundVariable.php | 11 + > .../testRuleDoesNotApplyToMethodArgument.php | 9 + > ...RuleDoesNotApplyToNamespacedCompactFunction.php | 12 + > .../testRuleDoesNotApplyToPostSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToRequestSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToServerSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToSessionSuperGlobal.php | 8 + > .../testRuleDoesNotApplyToStaticArrayProperty.php | 10 + > .../testRuleDoesNotApplyToStaticObjectProperty.php | 10 + > .../testRuleDoesNotApplyToStaticProperty.php | 10 + > .../testRuleDoesNotApplyToThisVariable.php | 8 + > ...DoesNotApplyToUnusedLocalVariableInFunction.php | 7 + > ...leDoesNotApplyToUnusedLocalVariableInMethod.php | 10 + > .../testRuleDoesNotApplyToUnusedParameters.php | 8 + > ...ompact_function_rule_works_case_insensitive.php | 10 + > ...ompact_function_rule_works_case_insensitive.php | 13 + > .../testRuleAppliesToUnusedPrivateField.php | 5 + > .../testRuleAppliesToUnusedPrivateStaticField.php | 5 + > ...ieldWithSameNameIsAccessedOnDifferentObject.php | 10 + > ...WhenLocalVariableIsUsedInStaticMemberPrefix.php | 15 + > ...FieldWithSameNameIsAccessedOnDifferentClass.php | 10 + > ...enStaticFieldWithSameNameIsAccessedOnParent.php | 10 + > ...DoesNotApplyToClassNameAccessedPrivateField.php | 10 + > ...stRuleDoesNotApplyToPrivateArrayFieldAccess.php | 10 + > ...esNotApplyToPrivateFieldInChainedMethodCall.php | 13 + > ...DoesNotApplyToPrivateStringIndexFieldAccess.php | 10 + > ...tRuleDoesNotApplyToSelfAccessedPrivateField.php | 10 + > ...uleDoesNotApplyToStaticAccessedPrivateField.php | 10 + > ...tRuleDoesNotApplyToThisAccessedPrivateField.php | 10 + > .../testRuleDoesNotApplyToUnusedProtectedField.php | 5 + > .../testRuleDoesNotApplyToUnusedPublicField.php | 5 + > ...DoesNotResultInFatalErrorByCallingNonObject.php | 10 + > ...ppliesToParentReferencedUnusedPrivateMethod.php | 13 + > .../testRuleAppliesToUnusedPrivateMethod.php | 8 + > .../testRuleAppliesToUnusedStaticPrivateMethod.php | 8 + > ...pliesWhenMethodIsReferencedOnDifferentClass.php | 13 + > ...liesWhenMethodIsReferencedOnDifferentObject.php | 13 + > ...henMethodWithSimilarNameIsInInvocationChain.php | 18 + > ...liesWhenPropertyWithSimilarNameIsReferenced.php | 13 + > ...RuleDoesNotApplyToClassNameReferencedMethod.php | 13 + > .../testRuleDoesNotApplyToPrivateCloneMethod.php | 8 + > .../testRuleDoesNotApplyToPrivateConstructor.php | 8 + > ...sNotApplyToPrivateMethodInChainedMethodCall.php | 13 + > ...estRuleDoesNotApplyToPrivatePhp4Constructor.php | 8 + > .../testRuleDoesNotApplyToSelfReferencedMethod.php | 13 + > ...estRuleDoesNotApplyToStaticReferencedMethod.php | 13 + > .../testRuleDoesNotApplyToThisReferencedMethod.php | 13 + > .../testApplyInvokesRuleWhenStrictModeIsSet.php | 8 + > ...yNotInvokesRuleWhenSuppressAnnotationExists.php | 8 + > .../files/TextUI/CommandLineOptions/inputfile.txt | 2 + > .../src/test/resources/files/pdepend.xml.dist | 15 + > .../src/test/resources/files/pmd/default-xml.xml | 8 + > .../test/resources/files/pmd/single-directory.xml | 21 + > .../src/test/resources/files/pmd/single-file.xml | 8 + > .../files/renderer/xml_renderer_expected1.xml | 16 + > .../renderer/xml_renderer_processing_errors.xml | 6 + > .../rulesets/alternative-property-value-syntax.xml | 23 + > .../resources/files/rulesets/exclude-pattern.xml | 22 + > .../test/resources/files/rulesets/pmd-refset1.xml | 16 + > .../files/rulesets/refset-exclude-all.xml | 18 + > .../files/rulesets/refset-exclude-one.xml | 17 + > .../src/test/resources/files/rulesets/refset1.xml | 13 + > .../src/test/resources/files/rulesets/refset2.xml | 13 + > .../src/test/resources/files/rulesets/refset3.xml | 19 + > .../src/test/resources/files/rulesets/refset4.xml | 16 + > .../files/rulesets/set-class-file-not-found.xml | 15 + > .../files/rulesets/set-class-not-found.xml | 15 + > .../resources/files/rulesets/set-invalid-xml.xml | 4 + > .../src/test/resources/files/rulesets/set1.xml | 29 + > .../src/test/resources/files/rulesets/set2.xml | 31 + > .../test/resources/files/source/ccn_function.php | 35 + > .../test/resources/files/source/npath_method.php4 | 15 + > .../files/source/source_with_npath_violation.php | 18 + > .../files/source/source_without_violations.php | 14 + > .../config/Symfony/Component/Config/.gitignore | 3 + > .../config/Symfony/Component/Config/CHANGELOG.md | 21 + > .../Symfony/Component/Config/ConfigCache.php | 126 + > .../Component/Config/Definition/ArrayNode.php | 390 ++ > .../Component/Config/Definition/BaseNode.php | 359 ++ > .../Component/Config/Definition/BooleanNode.php | 39 + > .../Definition/Builder/ArrayNodeDefinition.php | 488 ++ > .../Definition/Builder/BooleanNodeDefinition.php | 42 + > .../Definition/Builder/EnumNodeDefinition.php | 53 + > .../Config/Definition/Builder/ExprBuilder.php | 236 + > .../Definition/Builder/FloatNodeDefinition.php | 32 + > .../Definition/Builder/IntegerNodeDefinition.php | 32 + > .../Config/Definition/Builder/MergeBuilder.php | 72 + > .../Config/Definition/Builder/NodeBuilder.php | 246 + > .../Config/Definition/Builder/NodeDefinition.php | 343 + > .../Definition/Builder/NodeParentInterface.php | 21 + > .../Definition/Builder/NormalizationBuilder.php | 67 + > .../Definition/Builder/NumericNodeDefinition.php | 61 + > .../Builder/ParentNodeDefinitionInterface.php | 26 + > .../Definition/Builder/ScalarNodeDefinition.php | 32 + > .../Config/Definition/Builder/TreeBuilder.php | 63 + > .../Definition/Builder/ValidationBuilder.php | 51 + > .../Definition/Builder/VariableNodeDefinition.php | 64 + > .../Config/Definition/ConfigurationInterface.php | 27 + > .../Definition/Dumper/XmlReferenceDumper.php | 300 + > .../Definition/Dumper/YamlReferenceDumper.php | 199 + > .../Component/Config/Definition/EnumNode.php | 58 + > .../Definition/Exception/DuplicateKeyException.php | 22 + > .../Config/Definition/Exception/Exception.php | 21 + > .../Exception/ForbiddenOverwriteException.php | 22 + > .../Exception/InvalidConfigurationException.php | 33 + > .../Exception/InvalidDefinitionException.php | 21 + > .../Definition/Exception/InvalidTypeException.php | 21 + > .../Definition/Exception/UnsetKeyException.php | 22 + > .../Component/Config/Definition/FloatNode.php | 40 + > .../Component/Config/Definition/IntegerNode.php | 35 + > .../Component/Config/Definition/NodeInterface.php | 87 + > .../Component/Config/Definition/NumericNode.php | 55 + > .../Component/Config/Definition/Processor.php | 97 + > .../Config/Definition/PrototypeNodeInterface.php | 27 + > .../Config/Definition/PrototypedArrayNode.php | 331 + > .../Config/Definition/ReferenceDumper.php | 21 + > .../Component/Config/Definition/ScalarNode.php | 46 + > .../Component/Config/Definition/VariableNode.php | 114 + > .../FileLoaderImportCircularReferenceException.php | 27 + > .../Config/Exception/FileLoaderLoadException.php | 81 + > .../Symfony/Component/Config/FileLocator.php | 99 + > .../Component/Config/FileLocatorInterface.php | 31 + > .../config/Symfony/Component/Config/LICENSE | 19 + > .../Component/Config/Loader/DelegatingLoader.php | 62 + > .../Symfony/Component/Config/Loader/FileLoader.php | 108 + > .../Symfony/Component/Config/Loader/Loader.php | 82 + > .../Component/Config/Loader/LoaderInterface.php | 52 + > .../Component/Config/Loader/LoaderResolver.php | 80 + > .../Config/Loader/LoaderResolverInterface.php | 30 + > .../config/Symfony/Component/Config/README.md | 16 + > .../Config/Resource/DirectoryResource.php | 102 + > .../Component/Config/Resource/FileResource.php | 80 + > .../Config/Resource/ResourceInterface.php | 43 + > .../Component/Config/Tests/ConfigCacheTest.php | 138 + > .../Config/Tests/Definition/ArrayNodeTest.php | 160 + > .../Config/Tests/Definition/BooleanNodeTest.php | 60 + > .../Definition/Builder/ArrayNodeDefinitionTest.php | 207 + > .../Definition/Builder/EnumNodeDefinitionTest.php | 46 + > .../Tests/Definition/Builder/ExprBuilderTest.php | 210 + > .../Tests/Definition/Builder/NodeBuilderTest.php | 94 + > .../Builder/NumericNodeDefinitionTest.php | 93 + > .../Tests/Definition/Builder/TreeBuilderTest.php | 127 + > .../Definition/Dumper/XmlReferenceDumperTest.php | 80 + > .../Definition/Dumper/YamlReferenceDumperTest.php | 67 + > .../Config/Tests/Definition/EnumNodeTest.php | 41 + > .../Config/Tests/Definition/FinalizationTest.php | 73 + > .../Config/Tests/Definition/FloatNodeTest.php | 64 + > .../Config/Tests/Definition/IntegerNodeTest.php | 61 + > .../Config/Tests/Definition/MergeTest.php | 195 + > .../Config/Tests/Definition/NormalizationTest.php | 229 + > .../Tests/Definition/PrototypedArrayNodeTest.php | 180 + > .../Config/Tests/Definition/ScalarNodeTest.php | 60 + > .../Component/Config/Tests/FileLocatorTest.php | 107 + > .../Tests/Fixtures/Builder/BarNodeDefinition.php | 21 + > .../Config/Tests/Fixtures/Builder/NodeBuilder.php | 34 + > .../Fixtures/Builder/VariableNodeDefinition.php | 18 + > .../Configuration/ExampleConfiguration.php | 71 + > .../Config/Tests/Fixtures/Util/document_type.xml | 3 + > .../Config/Tests/Fixtures/Util/invalid.xml | 2 + > .../Config/Tests/Fixtures/Util/invalid_schema.xml | 2 + > .../Config/Tests/Fixtures/Util/schema.xsd | 9 + > .../Component/Config/Tests/Fixtures/Util/valid.xml | 3 + > .../Config/Tests/Loader/DelegatingLoaderTest.php | 83 + > .../Config/Tests/Loader/FileLoaderTest.php | 107 + > .../Config/Tests/Loader/LoaderResolverTest.php | 56 + > .../Component/Config/Tests/Loader/LoaderTest.php | 117 + > .../Tests/Resource/DirectoryResourceTest.php | 152 + > .../Config/Tests/Resource/FileResourceTest.php | 58 + > .../Component/Config/Tests/Util/XmlUtilsTest.php | 190 + > .../Symfony/Component/Config/Util/XmlUtils.php | 236 + > .../config/Symfony/Component/Config/composer.json | 32 + > .../Symfony/Component/Config/phpunit.xml.dist | 25 + > .../Component/DependencyInjection/.gitignore | 3 + > .../Component/DependencyInjection/Alias.php | 71 + > .../Component/DependencyInjection/CHANGELOG.md | 35 + > .../Compiler/AnalyzeServiceReferencesPass.php | 144 + > .../Compiler/CheckCircularReferencesPass.php | 79 + > .../Compiler/CheckDefinitionValidityPass.php | 90 + > ...heckExceptionOnInvalidReferenceBehaviorPass.php | 64 + > .../Compiler/CheckReferenceValidityPass.php | 167 + > .../DependencyInjection/Compiler/Compiler.php | 120 + > .../Compiler/CompilerPassInterface.php | 33 + > .../Compiler/DecoratorServicePass.php | 54 + > .../Compiler/InlineServiceDefinitionsPass.php | 148 + > .../Compiler/LoggingFormatter.php | 45 + > .../Compiler/MergeExtensionConfigurationPass.php | 59 + > .../DependencyInjection/Compiler/PassConfig.php | 256 + > .../Compiler/RemoveAbstractDefinitionsPass.php | 39 + > .../Compiler/RemovePrivateAliasesPass.php | 44 + > .../Compiler/RemoveUnusedDefinitionsPass.php | 84 + > .../Compiler/RepeatablePassInterface.php | 28 + > .../DependencyInjection/Compiler/RepeatedPass.php | 88 + > .../ReplaceAliasByActualDefinitionPass.php | 125 + > .../Compiler/ResolveDefinitionTemplatesPass.php | 154 + > .../Compiler/ResolveInvalidReferencesPass.php | 105 + > .../Compiler/ResolveParameterPlaceHoldersPass.php | 63 + > .../Compiler/ResolveReferencesToAliasesPass.php | 93 + > .../Compiler/ServiceReferenceGraph.php | 114 + > .../Compiler/ServiceReferenceGraphEdge.php | 70 + > .../Compiler/ServiceReferenceGraphNode.php | 122 + > .../Component/DependencyInjection/Container.php | 563 ++ > .../DependencyInjection/ContainerAware.php | 41 + > .../ContainerAwareInterface.php | 31 + > .../DependencyInjection/ContainerAwareTrait.php | 35 + > .../DependencyInjection/ContainerBuilder.php | 1169 ++++ > .../DependencyInjection/ContainerInterface.php | 158 + > .../Component/DependencyInjection/Definition.php | 742 +++ > .../DependencyInjection/DefinitionDecorator.php | 218 + > .../DependencyInjection/Dumper/Dumper.php | 38 + > .../DependencyInjection/Dumper/DumperInterface.php | 33 + > .../DependencyInjection/Dumper/GraphvizDumper.php | 302 + > .../DependencyInjection/Dumper/PhpDumper.php | 1380 ++++ > .../DependencyInjection/Dumper/XmlDumper.php | 337 + > .../DependencyInjection/Dumper/YamlDumper.php | 336 + > .../Exception/BadMethodCallException.php | 19 + > .../Exception/ExceptionInterface.php | 22 + > .../Exception/InactiveScopeException.php | 41 + > .../Exception/InvalidArgumentException.php | 21 + > .../Exception/LogicException.php | 19 + > .../Exception/OutOfBoundsException.php | 19 + > .../ParameterCircularReferenceException.php | 34 + > .../Exception/ParameterNotFoundException.php | 95 + > .../Exception/RuntimeException.php | 21 + > .../Exception/ScopeCrossingInjectionException.php | 65 + > .../Exception/ScopeWideningInjectionException.php | 64 + > .../ServiceCircularReferenceException.php | 41 + > .../Exception/ServiceNotFoundException.php | 56 + > .../DependencyInjection/ExpressionLanguage.php | 42 + > .../Extension/ConfigurationExtensionInterface.php | 33 + > .../DependencyInjection/Extension/Extension.php | 124 + > .../Extension/ExtensionInterface.php | 65 + > .../Extension/PrependExtensionInterface.php | 24 + > .../IntrospectableContainerInterface.php | 32 + > .../Symfony/Component/DependencyInjection/LICENSE | 19 + > .../Instantiator/InstantiatorInterface.php | 37 + > .../Instantiator/RealServiceInstantiator.php | 33 + > .../LazyProxy/PhpDumper/DumperInterface.php | 50 + > .../LazyProxy/PhpDumper/NullDumper.php | 46 + > .../DependencyInjection/Loader/ClosureLoader.php | 61 + > .../DependencyInjection/Loader/FileLoader.php | 39 + > .../DependencyInjection/Loader/IniFileLoader.php | 62 + > .../DependencyInjection/Loader/PhpFileLoader.php | 57 + > .../DependencyInjection/Loader/XmlFileLoader.php | 536 ++ > .../DependencyInjection/Loader/YamlFileLoader.php | 400 ++ > .../Loader/schema/dic/services/services-1.0.xsd | 189 + > .../Component/DependencyInjection/Parameter.php | 44 + > .../ParameterBag/FrozenParameterBag.php | 72 + > .../ParameterBag/ParameterBag.php | 304 + > .../ParameterBag/ParameterBagInterface.php | 115 + > .../Component/DependencyInjection/README.md | 81 + > .../Component/DependencyInjection/Reference.php | 72 + > .../Component/DependencyInjection/Scope.php | 50 + > .../DependencyInjection/ScopeInterface.php | 32 + > .../DependencyInjection/SimpleXMLElement.php | 114 + > .../TaggedContainerInterface.php | 33 + > .../Compiler/AnalyzeServiceReferencesPassTest.php | 127 + > .../Compiler/CheckCircularReferencesPassTest.php | 137 + > .../Compiler/CheckDefinitionValidityPassTest.php | 91 + > ...ExceptionOnInvalidReferenceBehaviorPassTest.php | 71 + > .../Compiler/CheckReferenceValidityPassTest.php | 98 + > .../Tests/Compiler/DecoratorServicePassTest.php | 81 + > .../Compiler/InlineServiceDefinitionsPassTest.php | 167 + > .../Tests/Compiler/IntegrationTest.php | 114 + > .../Compiler/RemoveUnusedDefinitionsPassTest.php | 116 + > .../ReplaceAliasByActualDefinitionPassTest.php | 59 + > .../ResolveDefinitionTemplatesPassTest.php | 181 + > .../Compiler/ResolveInvalidReferencesPassTest.php | 83 + > .../ResolveReferencesToAliasesPassTest.php | 56 + > .../Tests/ContainerBuilderTest.php | 818 +++ > .../DependencyInjection/Tests/ContainerTest.php | 593 ++ > .../DependencyInjection/Tests/CrossCheckTest.php | 96 + > .../Tests/DefinitionDecoratorTest.php | 120 + > .../DependencyInjection/Tests/DefinitionTest.php | 336 + > .../Tests/Dumper/GraphvizDumperTest.php | 80 + > .../Tests/Dumper/PhpDumperTest.php | 199 + > .../Tests/Dumper/XmlDumperTest.php | 134 + > .../Tests/Dumper/YamlDumperTest.php | 59 + > .../Tests/Extension/ExtensionTest.php | 81 + > .../Tests/Fixtures/containers/container10.php | 14 + > .../Tests/Fixtures/containers/container11.php | 12 + > .../Tests/Fixtures/containers/container12.php | 13 + > .../Tests/Fixtures/containers/container13.php | 16 + > .../Tests/Fixtures/containers/container14.php | 11 + > .../Tests/Fixtures/containers/container15.php | 11 + > .../Tests/Fixtures/containers/container16.php | 11 + > .../Tests/Fixtures/containers/container17.php | 10 + > .../Tests/Fixtures/containers/container18.php | 14 + > .../Tests/Fixtures/containers/container8.php | 14 + > .../Tests/Fixtures/containers/container9.php | 107 + > .../Tests/Fixtures/containers/interfaces1.php | 25 + > .../Tests/Fixtures/containers/interfaces2.php | 34 + > .../Tests/Fixtures/graphviz/services1.dot | 7 + > .../Tests/Fixtures/graphviz/services10-1.dot | 10 + > .../Tests/Fixtures/graphviz/services10.dot | 10 + > .../Tests/Fixtures/graphviz/services13.dot | 10 + > .../Tests/Fixtures/graphviz/services14.dot | 7 + > .../Tests/Fixtures/graphviz/services17.dot | 8 + > .../Tests/Fixtures/graphviz/services18.dot | 8 + > .../Tests/Fixtures/graphviz/services9.dot | 40 + > .../Tests/Fixtures/includes/ProjectExtension.php | 40 + > .../Fixtures/includes/ProjectWithXsdExtension.php | 19 + > .../includes/ProjectWithXsdExtensionInPhar.phar | Bin 0 -> 1138 bytes > .../Tests/Fixtures/includes/classes.php | 61 + > .../Tests/Fixtures/includes/createphar.php | 47 + > .../Tests/Fixtures/includes/foo.php | 38 + > .../Tests/Fixtures/includes/schema/project-1.0.xsd | 13 + > .../Tests/Fixtures/ini/nonvalid.ini | 2 + > .../Tests/Fixtures/ini/parameters.ini | 3 + > .../Tests/Fixtures/ini/parameters1.ini | 3 + > .../Tests/Fixtures/ini/parameters2.ini | 2 + > .../Tests/Fixtures/php/services1-1.php | 27 + > .../Tests/Fixtures/php/services1.php | 26 + > .../Tests/Fixtures/php/services10.php | 111 + > .../Tests/Fixtures/php/services11.php | 53 + > .../Tests/Fixtures/php/services8.php | 51 + > .../Tests/Fixtures/php/services9.php | 347 + > .../Tests/Fixtures/php/services9_compiled.php | 343 + > .../Tests/Fixtures/php/simple.php | 3 + > .../Tests/Fixtures/xml/extension1/services.xml | 14 + > .../Tests/Fixtures/xml/extension2/services.xml | 14 + > .../Tests/Fixtures/xml/extensions/services1.xml | 19 + > .../Tests/Fixtures/xml/extensions/services2.xml | 19 + > .../Tests/Fixtures/xml/extensions/services3.xml | 19 + > .../Tests/Fixtures/xml/extensions/services4.xml | 6 + > .../Tests/Fixtures/xml/extensions/services5.xml | 11 + > .../Tests/Fixtures/xml/extensions/services6.xml | 11 + > .../Tests/Fixtures/xml/extensions/services7.xml | 11 + > .../Tests/Fixtures/xml/namespaces.xml | 17 + > .../Tests/Fixtures/xml/nonvalid.xml | 3 + > .../Tests/Fixtures/xml/services1.xml | 2 + > .../Tests/Fixtures/xml/services10.xml | 16 + > .../Tests/Fixtures/xml/services13.xml | 9 + > .../Tests/Fixtures/xml/services14.xml | 19 + > .../Tests/Fixtures/xml/services2.xml | 31 + > .../Tests/Fixtures/xml/services3.xml | 13 + > .../Tests/Fixtures/xml/services4.xml | 13 + > .../Tests/Fixtures/xml/services4_bad_import.xml | 9 + > .../Tests/Fixtures/xml/services5.xml | 21 + > .../Tests/Fixtures/xml/services6.xml | 56 + > .../Tests/Fixtures/xml/services7.xml | 9 + > .../Tests/Fixtures/xml/services8.xml | 22 + > .../Tests/Fixtures/xml/services9.xml | 97 + > .../Tests/Fixtures/xml/withdoctype.xml | 3 + > .../Tests/Fixtures/yaml/bad_calls.yml | 4 + > .../Tests/Fixtures/yaml/bad_import.yml | 2 + > .../Tests/Fixtures/yaml/bad_imports.yml | 2 + > .../Tests/Fixtures/yaml/bad_parameters.yml | 2 + > .../Tests/Fixtures/yaml/bad_service.yml | 2 + > .../Tests/Fixtures/yaml/bad_services.yml | 1 + > .../Tests/Fixtures/yaml/badtag1.yml | 5 + > .../Tests/Fixtures/yaml/badtag2.yml | 6 + > .../Tests/Fixtures/yaml/badtag3.yml | 6 + > .../Tests/Fixtures/yaml/badtag4.yml | 6 + > .../Tests/Fixtures/yaml/nonvalid1.yml | 2 + > .../Tests/Fixtures/yaml/nonvalid2.yml | 1 + > .../Tests/Fixtures/yaml/services10.yml | 9 + > .../Tests/Fixtures/yaml/services11.yml | 1 + > .../Tests/Fixtures/yaml/services13.yml | 3 + > .../Tests/Fixtures/yaml/services2.yml | 12 + > .../Tests/Fixtures/yaml/services3.yml | 5 + > .../Tests/Fixtures/yaml/services4.yml | 7 + > .../Tests/Fixtures/yaml/services4_bad_import.yml | 2 + > .../Tests/Fixtures/yaml/services6.yml | 37 + > .../Tests/Fixtures/yaml/services7.yml | 2 + > .../Tests/Fixtures/yaml/services8.yml | 6 + > .../Tests/Fixtures/yaml/services9.yml | 92 + > .../Instantiator/RealServiceInstantiatorTest.php | 37 + > .../Tests/LazyProxy/PhpDumper/NullDumperTest.php | 35 + > .../Tests/Loader/ClosureLoaderTest.php | 43 + > .../Tests/Loader/IniFileLoaderTest.php | 80 + > .../Tests/Loader/PhpFileLoaderTest.php | 43 + > .../Tests/Loader/XmlFileLoaderTest.php | 455 ++ > .../Tests/Loader/YamlFileLoaderTest.php | 243 + > .../Tests/ParameterBag/FrozenParameterBagTest.php | 60 + > .../Tests/ParameterBag/ParameterBagTest.php | 279 + > .../DependencyInjection/Tests/ParameterTest.php | 26 + > .../DependencyInjection/Tests/ReferenceTest.php | 32 + > .../Component/DependencyInjection/Variable.php | 50 + > .../Component/DependencyInjection/composer.json | 41 + > .../Component/DependencyInjection/phpunit.xml.dist | 25 + > .../Symfony/Component/Filesystem/.gitignore | 3 + > .../Symfony/Component/Filesystem/CHANGELOG.md | 23 + > .../Filesystem/Exception/ExceptionInterface.php | 23 + > .../Filesystem/Exception/FileNotFoundException.php | 34 + > .../Component/Filesystem/Exception/IOException.php | 41 + > .../Filesystem/Exception/IOExceptionInterface.php | 27 + > .../Symfony/Component/Filesystem/Filesystem.php | 485 ++ > .../Symfony/Component/Filesystem/LICENSE | 19 + > .../Symfony/Component/Filesystem/README.md | 45 + > .../Component/Filesystem/Tests/ExceptionTest.php | 46 + > .../Component/Filesystem/Tests/FilesystemTest.php | 907 +++ > .../Filesystem/Tests/FilesystemTestCase.php | 127 + > .../Symfony/Component/Filesystem/composer.json | 31 + > .../Symfony/Component/Filesystem/phpunit.xml.dist | 23 + > components/lib/Components/Qc/Task/Md.php | 33 +- > 1015 files changed, 104743 insertions(+), 7 deletions(-) > > http://github.com/horde/horde/commit/12107f097c04cb9af4a62e53beffcfdd3201a02f
Attachment
Watch this ticket
N
ew Ticket
M
y Tickets
S
earch
Q
uery Builder
R
eports
Saved Queries
Open Bugs
Bugs waiting for Feedback
Open Bugs in Releases
Open Enhancements
Enhancements waiting for Feedback
Bugs with Patches
Enhancements with Patches
Release Showstoppers
Stalled Tickets
New Tickets
Horde 5 Showstoppers