stable
Clone or download
Read-only
request #14527: Remove useless @param and @return annotations
When a function already has native typehints, the annotations do not bring any value. For example in the following code snippet, the annotations can be removed and the developer or static analysis tool still have the same information: /** * @param int $bar * @return int */ function foo(int $bar): int { return $bar; } PHPStorm users can make their IDE stop complaining when some phpdoc comments are missing: * PHP | PHPDoc | PHPDoc comment matches function/method signature → enable 'Allow missing parameters with type hints' * PHP | PHPDoc | Missing @return tag → enable 'Ignore PHPDoc with return type hint' Change-Id: I3db9f5bb313f3ea056be636fd865be289a4034ba
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/admindelegation/include/SiteAdminController.php | +0 | −2 | Go to diff View file |
M | plugins/admindelegation/include/admindelegationPlugin.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/AgileDashboardLegacyController.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/BacklogItem/SubBacklogItemProvider.class.php | +0 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/BreadCrumbDropdown/AgileDashboardCrumbBuilder.php | +0 | −6 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/BreadCrumbDropdown/MilestoneCrumbBuilder.php | +0 | −15 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/BreadCrumbDropdown/VirtualTopMilestoneCrumbBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupFieldRetriever.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Kanban/BreadCrumbBuilder.php | +0 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Kanban/RealTime/KanbanArtifactMessageBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/KanbanColumnFactory.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/BacklogItemCollectionFactory.class.php | +0 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/QueryToMilestoneRepresentationBuilderConverter.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/QueryToPeriodMilestoneRepresentationBuilderConverter.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/AdditionalPanesForMilestoneEvent.php | +0 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/BacklogItemRepresentationFactory.class.php | +0 | −4 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/CardRepresentation.class.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/CumulativeFlowDiagram/OrderedColumnRepresentationsBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/ItemRepresentationBuilder.php | +0 | −9 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/MilestoneResource.class.php | +0 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/OrderValidator.class.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Semantic/Semantic_InitialEffort.class.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanCreator.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanXMLImporter.php | +0 | −6 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Workflow/AddToTopBacklog.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/XMLFullStructureExporter.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/XMLImporter.class.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboardRouter.class.php | +0 | −4 | Go to diff View file |
M | plugins/agiledashboard/include/PaneRedirectionExtractor.class.php | +0 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/PermissionsPerGroup/PlanningPermissionsRepresentationBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/ArtifactMilestone.class.php | +0 | −6 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/Milestone.class.php | +0 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/MilestoneBurndownFieldChecker.php | +0 | −5 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/MilestoneController.class.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/MilestoneFactory.class.php | +0 | −41 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/NoMilestone.class.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/PlanningController.class.php | +0 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/PlanningFactory.class.php | +0 | −9 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/PlanningRequestValidator.class.php | +0 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/ScrumPlanningFilter.php | +0 | −4 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/VirtualTopMilestone.class.php | +0 | −5 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/VirtualTopMilestoneController.class.php | +0 | −6 | Go to diff View file |
M | plugins/agiledashboard/include/agiledashboardPlugin.php | +0 | −3 | Go to diff View file |
M | plugins/artifactsfolders/include/Folder/HierarchyOfFolderBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/bugzilla_reference/include/Bugzilla/Administration/Controller.php | +0 | −3 | Go to diff View file |
M | plugins/cardwall/include/Board.class.php | +0 | −2 | Go to diff View file |
M | plugins/cardwall/include/CardFields.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/CardInCellPresenterFactory.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/Cardwall/BackgroundColor/BackgroundColorBuilder.php | +0 | −3 | Go to diff View file |
M | plugins/cardwall/include/Cardwall/CardwallLegacyController.php | +0 | −2 | Go to diff View file |
M | plugins/cardwall/include/CardwallConfigXmlImport.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/Column.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/OnTop/Config.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/OnTop/Config/TrackerMapping.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/OnTop/ConfigEmpty.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/OnTop/ConfigFactory.class.php | +0 | −2 | Go to diff View file |
M | plugins/cardwall/include/PaneBoardBuilder.class.php | +0 | −7 | Go to diff View file |
M | plugins/cardwall/include/PaneContentPresenter.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/RawBoardBuilder.class.php | +0 | −7 | Go to diff View file |
M | plugins/cardwall/include/RendererBoardBuilder.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/Semantic/BackgroundColorFieldRetriever.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/Semantic/BackgroundColorPresenterBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/Semantic/CardFieldXmlExporter.php | +0 | −3 | Go to diff View file |
M | plugins/cardwall/include/Semantic/CardFields.class.php | +0 | −1 | Go to diff View file |
M | plugins/cardwall/include/Semantic/FieldUsedInSemanticObjectChecker.php | +0 | −2 | Go to diff View file |
M | plugins/cardwall/include/SingleCardBuilder.class.php | +0 | −4 | Go to diff View file |
M | plugins/cardwall/include/SwimlineSoloNoMatchingColumns.class.php | +0 | −2 | Go to diff View file |
M | plugins/create_test_env/include/CreateTestEnv/CreateTestEnvironment.php | +0 | −1 | Go to diff View file |
M | plugins/create_test_env/include/CreateTestEnv/NotificationBotSaveController.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/REST/v1/CrossTrackerReportsResource.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/CSV/CSVExportController.php | +0 | −5 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/CSV/Format/UserValue.php | +0 | −3 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/CrossTrackerArtifactReportFactory.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/InvalidComparisonCollectorVisitor.php | +0 | −3 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/BetweenComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/EqualComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/GreaterThanComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/GreaterThanOrEqualComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/LesserThanComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/LesserThanOrEqualComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/NotEqualComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/EqualComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/InComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/NotEqualComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/NotInComparisonFromWhereBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/FromWhereBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/InComparisonFromWhereBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/ListValueExtractor.php | +0 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/NotInComparisonFromWhereBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/EqualComparisonFromWhereBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/InComparisonFromWhereBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/NotEqualComparisonFromWhereBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/NotInComparisonFromWhereBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilderVisitor.php | +0 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/ComparisonChecker.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/GreaterOrLesserThanComparisonChecker.php | +0 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/OperatorToNowComparisonException.php | +0 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/ICheckMetadataForAComparison.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/MetadataChecker.php | +0 | −4 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/MetadataUsageChecker.php | +0 | −6 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/SimilarField/SimilarFieldsMatcher.php | +0 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Widget/WidgetPermissionChecker.php | +0 | −1 | Go to diff View file |
M | plugins/docman/bin/DocmanExport/Docman_XMLExport.class.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/DocmanSettingsSiteAdmin/FilesUploadLimits/DocmanFilesUploadLimitsAdminController.php | +0 | −3 | Go to diff View file |
M | plugins/docman/include/DocmanSettingsSiteAdmin/FilesUploadLimits/DocmanFilesUploadLimitsAdminSaveController.php | +0 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_ActionsDeleteVisitor.class.php | +0 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataValueFactory.class.php | +0 | −9 | Go to diff View file |
M | plugins/docman/include/Docman_PermissionsItemManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_PermissionsManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_PermissionsManagerDao.class.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_VersionFactory.class.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_Widget_Embedded.class.php | +0 | −2 | Go to diff View file |
M | plugins/docman/include/ExternalLinks/ExternalLinkRedirector.php | +0 | −6 | Go to diff View file |
M | plugins/docman/include/Metadata/ItemImpactedByMetadataChangeCollection.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/Metadata/MetadataValueStore.php | +0 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/AfterItemCreationVisitor.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanEmbeddedFilesResource.php | +0 | −3 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanEmptyDocumentsResource.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanFilesResource.php | +0 | −5 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanFoldersResource.php | +0 | −9 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanItemCreator.php | +0 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanItemsResource.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanLinksResource.php | +0 | −3 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanWikiResource.php | +0 | −5 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocumentBeforeVersionCreationValidatorVisitor.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/ItemRepresentationBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/ItemRepresentationVisitor.php | +0 | −5 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/HardcodedMetadataObsolescenceDateRetriever.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/ItemStatusMapper.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/MetadataRepresentationBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/MetadataToCreate.php | +0 | −3 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/MetadataToUpdate.php | +0 | −6 | Go to diff View file |
M | plugins/docman/include/REST/v1/Service/DocmanServiceResource.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/Upload/Version/VersionOngoingUploadRetriever.php | +0 | −3 | Go to diff View file |
M | plugins/docman/include/Upload/Version/VersionToUploadCreator.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/docmanPlugin.php | +0 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_View.class.php | +0 | −1 | Go to diff View file |
M | plugins/docman/include/view/DocumentFooterPresenterBuilder.php | +0 | −3 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/DocmanLinksTest.php | +0 | −2 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/DocmanWikiTest.php | +0 | −2 | Go to diff View file |
M | plugins/docman/tests/rest/Helper/DocmanDataBuildCommon.php | +0 | −9 | Go to diff View file |
M | plugins/document/include/Tree/DocumentTreeController.php | +0 | −1 | Go to diff View file |
M | plugins/forumml/include/ListMailsController.php | +0 | −2 | Go to diff View file |
M | plugins/forumml/include/OutputAttachmentController.php | +0 | −2 | Go to diff View file |
M | plugins/forumml/include/SendMailController.php | +0 | −2 | Go to diff View file |
M | plugins/forumml/include/WriteMailController.php | +0 | −2 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/FileCreator.php | +0 | −1 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/FileResource.php | +0 | −3 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/PackageRepresentationBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/ReleaseResource.php | +0 | −3 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/ServiceRepresentationBuilder.php | +0 | −3 | Go to diff View file |
M | plugins/frs/include/FRS/Upload/Tus/FileUploadCanceler.php | +0 | −6 | Go to diff View file |
M | plugins/git/include/Git/BreadCrumbDropdown/GitCrumbBuilder.php | +0 | −3 | Go to diff View file |
M | plugins/git/include/Git/BreadCrumbDropdown/RepositoryCrumbBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/DefaultSettings/DefaultSettingsRouter.php | +0 | −3 | Go to diff View file |
M | plugins/git/include/Git/DefaultSettings/IndexController.php | +0 | −3 | Go to diff View file |
M | plugins/git/include/Git/Driver/Gerrit/MembershipManager.class.php | +0 | −20 | Go to diff View file |
M | plugins/git/include/Git/Driver/Gerrit/ProjectCreator.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git/Driver/Gerrit/Template/TemplateFactory.class.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/Driver/Gerrit/UmbrellaProjectManager.class.php | +0 | −3 | Go to diff View file |
M | plugins/git/include/Git/Driver/Gerrit/UserAccountManager.class.php | +0 | −6 | Go to diff View file |
M | plugins/git/include/Git/Driver/GerritDriver.class.php | +0 | −23 | Go to diff View file |
M | plugins/git/include/Git/Driver/GerritREST.class.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/GitPluginDefaultController.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git/GitRepositoryBrowserController.php | +0 | −4 | Go to diff View file |
M | plugins/git/include/Git/GitRepositoryDeletionEvent.php | +0 | −3 | Go to diff View file |
M | plugins/git/include/Git/Gitolite/ProjectSerializer.class.php | +0 | −3 | Go to diff View file |
M | plugins/git/include/Git/HTTP/HTTPAccessControl.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git/HTTP/HTTPController.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/Hook/LogAnalyzer.class.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/PermissionsPerGroup/CollectionOfUGroupsRepresentationFormatter.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/PermissionsPerGroup/CollectionOfUgroupsFormatter.php | +0 | −6 | Go to diff View file |
M | plugins/git/include/Git/PermissionsPerGroup/RepositoryFineGrainedRepresentationBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git/PermissionsPerGroup/RepositorySimpleRepresentationBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/ReferenceManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git/RemoteServer/GerritServerFactory.class.php | +0 | −22 | Go to diff View file |
M | plugins/git/include/Git/Repository/GitPHPProjectRetriever.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git/Repository/LargestObjectSizeGitRepository.php | +0 | −3 | Go to diff View file |
M | plugins/git/include/Git/Repository/RepositoryCreator.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/Repository/View/CommitForCurrentTreeRetriever.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/Repository/View/FilesHeaderPresenterBuilder.php | +0 | −9 | Go to diff View file |
M | plugins/git/include/Git/RepositoryList/GitRepositoryListController.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git/RepositoryList/ListPresenterBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git/RouterLink.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git/UserAccountManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/GitActions.class.php | +0 | −17 | Go to diff View file |
M | plugins/git/include/GitBackend.class.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/GitDao.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/GitLegacyURLRedirectController.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/GitPHP/git/TreeDiff.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/GitRepositoryFactory.class.php | +0 | −6 | Go to diff View file |
M | plugins/git/include/GitRepositoryManager.class.php | +0 | −10 | Go to diff View file |
M | plugins/git/include/GitRepositoryUrlManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/GitViews/GitViewHeader.php | +0 | −3 | Go to diff View file |
M | plugins/git/include/Git_Backend_Gitolite.class.php | +0 | −8 | Go to diff View file |
M | plugins/git/include/Git_Backend_Interface.php | +0 | −5 | Go to diff View file |
M | plugins/git/include/Git_GitoliteDriver.class.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/Git_Gitolite_SSHKeyDumper.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/Git_PostReceiveMailManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/REST/v1/GitRepositoryRepresentation.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/REST/v1/ProjectResource.class.php | +0 | −2 | Go to diff View file |
M | plugins/git/include/REST/v1/RepositoryRepresentationBuilder.class.php | +0 | −4 | Go to diff View file |
M | plugins/git/include/gitPlugin.php | +0 | −9 | Go to diff View file |
M | plugins/gitlfs/include/Admin/IndexController.php | +0 | −2 | Go to diff View file |
M | plugins/gitlfs/include/Admin/IndexPostController.php | +0 | −2 | Go to diff View file |
M | plugins/gitlfs/include/Download/FileDownloaderController.php | +0 | −2 | Go to diff View file |
M | plugins/gitlfs/include/Transfer/Basic/BlockToMaxSizeOnReadFilter.php | +0 | −6 | Go to diff View file |
M | plugins/gitlfs/phpunit/StreamFilter/ReplaceDataFilter.php | +0 | −3 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphontrackersv5Plugin.php | +0 | −1 | Go to diff View file |
M | plugins/ldap/include/BindMembersConfirmController.php | +0 | −2 | Go to diff View file |
M | plugins/ldap/include/BindUgroupConfirmController.php | +0 | −2 | Go to diff View file |
M | plugins/ldap/include/GroupAutocompleteController.php | +0 | −2 | Go to diff View file |
M | plugins/ldap/include/LDAP_BackendSVN.class.php | +0 | −2 | Go to diff View file |
M | plugins/ldap/include/LDAP_UserManager.class.php | +0 | −4 | Go to diff View file |
M | plugins/ldap/include/WelcomeDisplayController.php | +0 | −2 | Go to diff View file |
M | plugins/ldap/include/WelcomeUpdateController.php | +0 | −2 | Go to diff View file |
M | plugins/ldap/include/ldapPlugin.php | +0 | −1 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiDao.class.php | +0 | −1 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiInstantiater.class.php | +0 | −7 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiLanguageManager.php | +0 | −1 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiManager.class.php | +0 | −4 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiUserGroupsMapper.class.php | +0 | −1 | Go to diff View file |
M | plugins/mediawiki/include/Migration/MediawikiMigrator.php | +0 | −1 | Go to diff View file |
M | plugins/mediawiki/include/PermissionsPerGroup/PermissionPerGroupPaneBuilder.php | +0 | −6 | Go to diff View file |
M | plugins/mediawiki/include/mediawikiPlugin.php | +0 | −3 | Go to diff View file |
M | plugins/openidconnectclient/include/OpenIDConnectClient/Administration/Controller.php | +0 | −2 | Go to diff View file |
M | plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/UserInfoRequestSender.php | +0 | −1 | Go to diff View file |
M | plugins/openidconnectclient/include/OpenIDConnectClient/LoginController.php | +0 | −2 | Go to diff View file |
M | plugins/proftpd/include/ProFTPd/Admin/AdminController.class.php | +0 | −1 | Go to diff View file |
M | plugins/proftpd/include/ProFTPd/Directory/DirectoryPathCollection.class.php | +0 | −3 | Go to diff View file |
M | plugins/proftpd/include/ProFTPd/ProftpdRouter.class.php | +0 | −2 | Go to diff View file |
M | plugins/proftpd/include/ProFTPd/ServiceProFTPd.class.php | +0 | −1 | Go to diff View file |
M | plugins/proftpd/include/proftpdPlugin.php | +0 | −3 | Go to diff View file |
M | plugins/project_ownership/include/ProjectAdmin/IndexController.php | +0 | −2 | Go to diff View file |
M | plugins/projectmilestones/include/projectmilestonesPlugin.php | +0 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestsResource.php | +0 | −3 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/RepoManagement/RepoManagementController.php | +0 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Reviewer/Change/ReviewerChangePullRequestAssociation.php | +0 | −6 | Go to diff View file |
M | plugins/pullrequest/include/pullrequestPlugin.php | +0 | −3 | Go to diff View file |
M | plugins/statistics/include/statisticsPlugin.php | +0 | −1 | Go to diff View file |
M | plugins/svn/include/Events/SystemEvent_SVN_DELETE_REPOSITORY.class.php | +0 | −7 | Go to diff View file |
M | plugins/svn/include/REST/v1/FullRepositoryRepresentation.php | +0 | −4 | Go to diff View file |
M | plugins/svn/include/REST/v1/NotificationUpdateChecker.php | +0 | −1 | Go to diff View file |
M | plugins/svn/include/REST/v1/RepositoryResource.php | +0 | −2 | Go to diff View file |
M | plugins/svn/include/REST/v1/SettingsRepresentationValidator.php | +0 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/AdminController.php | +0 | −3 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/MailNotificationManager.php | +0 | −5 | Go to diff View file |
M | plugins/svn/include/SVN/DiskUsage/DiskUsageRetriever.php | +0 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/RedirectOldViewVCUrls.php | +0 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/HookConfigRetriever.php | +0 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/RepositoryByProjectCollection.php | +0 | −3 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/RepositoryCreator.php | +0 | −8 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/RepositoryManager.php | +0 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/SvnRouter.php | +0 | −7 | Go to diff View file |
M | plugins/taskboard/include/REST/v1/Cell/CellResource.php | +0 | −2 | Go to diff View file |
M | plugins/taskboard/include/REST/v1/TaskboardCardResource.php | +0 | −1 | Go to diff View file |
M | plugins/textualreport/include/TextualReport/ArtifactsPresentersBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/textualreport/include/TextualReport/SinglePageExporter.php | +0 | −2 | Go to diff View file |
M | plugins/textualreport/include/TextualReport/SinglePagePresenterBuilder.php | +0 | −2 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/ArtifactTimeRetriever.php | +0 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/DateTrackingTimesPeriod.php | +0 | −11 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/ProjectResource.php | +0 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingOverviewRepresentationsBuilder.php | +0 | −4 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingReportResource.php | +0 | −5 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Time/TimeController.php | +0 | −2 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Time/TimetrackingReport.php | +0 | −3 | Go to diff View file |
M | plugins/timetracking/include/timetrackingPlugin.php | +0 | −2 | Go to diff View file |
M | plugins/timetracking/tests/rest/TimetrackingDataBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/REST/Artifact/ArtifactCreator.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/REST/Artifact/ArtifactRepresentationBuilder.php | +0 | −14 | Go to diff View file |
M | plugins/tracker/include/REST/Artifact/ArtifactValidator.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/REST/TrackerRestBuilder.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/WorkflowTransitionPOSTRepresentation.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/ArtifactFilesResource.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/REST/v1/ArtifactTemporaryFilesResource.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Event/PostActionVisitExternalActionsEvent.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/ProjectTrackersResource.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/ReportArtifactFactory.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/TrackerFieldsResource.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/REST/v1/TrackersResource.class.php | +0 | −5 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/CheckPostActionsForTracker.php | +0 | −15 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/FrozenFieldsRepresentation.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/HiddenFieldsetsRepresentation.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/TransitionsPermissionsChecker.php | +0 | −6 | Go to diff View file |
M | plugins/tracker/include/ServiceTracker.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CreateArtifact.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/AdditionalArtifactActionButtonsFetcher.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/AdditionalButtonAction.php | +0 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactMoveButtonPresenterBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/GlobalButtonsActionPresenter.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactChildPresenter.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArchiveDeletedArtifactProvider.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Attachment/TemporaryFileManager.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/FieldsToBeSavedInSpecificOrderRetriever.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/NewChangesetCreatorBase.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/ActionsRunner.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/EmailNotificationTask.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ChangesetValue/ArtifactLink/AddedLinkByNatureCollection.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ChangesetValue/ArtifactLink/CollectionOfLinksFormatter.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ExistingArtifactSourceIdFromTrackerExtractor.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/InvertCommentsController.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/InvertDisplayChangesController.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/LatestHeartbeatsCollector.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Renderer/ArtifactRenderer.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Renderer/EditInPlaceRenderer.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_ArtifactFactory.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetFactory.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetValue.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetValue_ArtifactLink.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport.class.php | +0 | −52 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategy.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyAlphanumeric.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyAttachment.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyDate.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyList.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyOpenList.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyPermissionsOnArtifact.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyText.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/CardFields.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/ChangesetValueComputed.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminderManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Assignee.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Commenter.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Submitter.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Events/AllowedFieldTypeChangesRetriever.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FileInfoFactory.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ArtifactLinkValidator.php | +0 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ChartConfigurationFieldRetriever.php | +0 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ChartConfigurationValueRetriever.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ChartMessageFetcher.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/ArtifactLinksToRender.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/SourceOfAssociationDetector.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Date/CSVFormatter.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindDecoratorRetriever.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement.class.php | +0 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElementFactory.class.php | +0 | −14 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Container.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Container_Column.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field.class.php | +0 | −10 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_ArtifactId.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_ArtifactLink.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Burndown.class.php | +0 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Computed.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_CrossReferences.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Date.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_File.class.php | +0 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Float.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Integer.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_LastUpdateDate.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List.class.php | +0 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Numeric.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_PerTrackerArtifactIdclass.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_PermissionsOnArtifact.class.php | +0 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Priority.class.php | +0 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_String.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_SubmittedOn.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Text.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Shared.class.php | +0 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_StaticField.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_SharedFormElementFactory.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Hierarchy/HierarchyFactory.class.php | +0 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/MigrationManager.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Notifications/RecipientsManager.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Notifications/TrackerForceNotificationsLevelCommand.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Permission/Fields/ByField/ByFieldController.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Permission/Fields/ByField/ByFieldGroupPermissions.php | +0 | −12 | Go to diff View file |
M | plugins/tracker/include/Tracker/Permission/Fields/ByField/ByFieldUGroup.php | +0 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/Permission/Fields/ByGroup/ByGroupController.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Permission/Fields/ByGroup/ByGroupFieldsPermissions.php | +0 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/Permission/Fields/PermissionsOnFieldsUpdateController.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Permission/PermissionChecker.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Permission/PermissionRetrieveAssignee.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/ReferenceManager.class.php | +0 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Event/TrackerReportProcessAdditionalQuery.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/ExpertQueryValidator.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/IBuildInvalidSearchablesCollection.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateFieldChecker.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/ICheckMetadataForAComparison.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataEqualComparisonFromWhereBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataNotEqualComparisonFromWhereBuilder.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Tracker_Report_Renderer.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/Date/Factory.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/List/Dao.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/List/Factory.class.php | +0 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/Tracker_Rule.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/Tracker_RuleFactory.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/Tracker_RulesManager.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Timeframe/TimeframeChecker.php | +0 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Tracker_SemanticManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Tracker_Semantic_Contributor.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Tracker_Semantic_Description.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Tracker_Semantic_Status.class.php | +0 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Tracker_Semantic_Title.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/TrackerFactory.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/TrackerManager.class.php | +0 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker_NotificationsManager.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker_Report_Field.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker_URLVerification.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Exporter/ChangesetValuesXMLExporter.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Exporter/FilePathXMLExporter.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Exporter/InArchiveFilePathXMLExporter.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Exporter/LocalAbsoluteFilePathXMLExporter.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeDateXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeFloatXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeIntegerXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeListXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeOpenListXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangePermissionsOnArtifactXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeStringXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeTextXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeUnknownXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeXMLUpdater.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/TrackerXMLFieldMappingFromExistingTracker.php | +0 | −11 | Go to diff View file |
M | plugins/tracker/include/TrackerXmlImport.class.php | +0 | −21 | Go to diff View file |
M | plugins/tracker/include/Workflow/Event/WorkflowDeletionEvent.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/CIBuild/Transition_PostAction_CIBuild.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/Field/Transition_PostAction_Field.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/FrozenFields/FrozenFields.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/GetExternalSubFactoriesEvent.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/GetPostActionShortNameFromXmlTagNameEvent.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/HiddenFieldsets/HiddenFieldsets.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/Transition_PostAction.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/SimpleMode/State/State.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Workflow/SimpleMode/State/StateFactory.php | +0 | −6 | Go to diff View file |
M | plugins/tracker/include/Workflow/SimpleMode/State/TransitionCreator.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/SimpleMode/State/TransitionExtractor.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/Transition.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/Transition/ConditionFactory.class.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/include/Workflow/TransitionFactory.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/Trigger/FieldValue.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/Trigger/RulesBuilderFactory.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/Trigger/RulesFactory.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/Trigger/RulesManager.class.php | +0 | −4 | Go to diff View file |
M | plugins/tracker/include/Workflow/Trigger/RulesProcessor.class.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/WorkflowFactory.class.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/include/XMLTemplatesController.php | +0 | −2 | Go to diff View file |
M | plugins/tracker/include/trackerPlugin.php | +0 | −1 | Go to diff View file |
M | plugins/tracker/phpunit/Tracker/FormElement/Tracker_FormElement_Field_CheckboxTest.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/phpunit/Tracker/FormElement/Tracker_FormElement_Field_List_BindFactoryTest.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/phpunit/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_StaticTest.php | +0 | −3 | Go to diff View file |
M | plugins/tracker/phpunit/Tracker/Notifications/Settings/UserNotificationSettingsTest.php | +0 | −15 | Go to diff View file |
M | plugins/tracker_encryption/include/ChangesetValue.php | +0 | −2 | Go to diff View file |
M | plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointCreatorController.php | +0 | −2 | Go to diff View file |
M | plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointDeleteController.php | +0 | −2 | Go to diff View file |
M | plugins/tuleap_synchro/include/Tuleap_Synchro/ListEndpoints/ListEndpointsController.php | +0 | −2 | Go to diff View file |
M | plugins/tuleap_synchro/include/Tuleap_Synchro/Webhook/WebhookGenerator.php | +0 | −1 | Go to diff View file |
M | plugins/userlog/include/UserLogRouter.php | +0 | −1 | Go to diff View file |
M | plugins/velocity/include/Velocity/Semantic/BacklogRequiredTracker.php | +0 | −1 | Go to diff View file |
M | plugins/velocity/include/Velocity/Semantic/SemanticVelocityFactory.php | +0 | −3 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVDocmanDocument.class.php | +0 | −1 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVDocmanFolder.class.php | +0 | −1 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVFRSFile.class.php | +0 | −1 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVFRSPackage.class.php | +0 | −1 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVFRSRelease.class.php | +0 | −3 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVProject.class.php | +0 | −2 | Go to diff View file |
M | plugins/webdav/include/WebDAVAuthentication.class.php | +0 | −1 | Go to diff View file |
M | plugins/webdav/include/WebDAVUtils.class.php | +0 | −1 | Go to diff View file |
M | plugins/webdav/include/webdavPlugin.php | +0 | −1 | Go to diff View file |
M | src/common/Config/ForgeConfig.php | +0 | −1 | Go to diff View file |
M | src/common/DB/DBTransactionExecutorWithConnection.php | +0 | −1 | Go to diff View file |
M | src/common/Dashboard/Project/ProjectDashboardController.php | +0 | −5 | Go to diff View file |
M | src/common/Dashboard/Project/ProjectDashboardRouter.php | +0 | −1 | Go to diff View file |
M | src/common/Dashboard/Project/ProjectDashboardSaver.php | +0 | −6 | Go to diff View file |
M | src/common/Dashboard/Project/ProjectDashboardXMLImporter.php | +0 | −4 | Go to diff View file |
M | src/common/Dashboard/User/UserDashboardController.php | +0 | −4 | Go to diff View file |
M | src/common/Dashboard/User/UserDashboardDao.php | +0 | −1 | Go to diff View file |
M | src/common/Dashboard/User/UserDashboardRouter.php | +0 | −1 | Go to diff View file |
M | src/common/Dashboard/User/UserDashboardSaver.php | +0 | −1 | Go to diff View file |
M | src/common/Dashboard/Widget/Add/AddWidgetController.php | +0 | −3 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetChecker.php | +0 | −2 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetColumn.php | +0 | −3 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetDeletor.php | +0 | −6 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetLine.php | +0 | −3 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetPresenterBuilder.php | +0 | −1 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetRemoverInList.php | +0 | −2 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetReorder.php | +0 | −9 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetRetriever.php | +0 | −6 | Go to diff View file |
M | src/common/Dashboard/Widget/WidgetDashboardController.php | +0 | −3 | Go to diff View file |
M | src/common/Event/EventManager.class.php | +0 | −1 | Go to diff View file |
M | src/common/Event/Events/HitEvent.php | +0 | −6 | Go to diff View file |
M | src/common/Event/Events/ProjectProviderEvent.php | +0 | −3 | Go to diff View file |
M | src/common/FRS/FRSFileOngoingUploadException.php | +0 | −5 | Go to diff View file |
M | src/common/FRS/FRSPermissionFactory.php | +0 | −1 | Go to diff View file |
M | src/common/FRS/FRSRouter.php | +0 | −1 | Go to diff View file |
M | src/common/FRS/LicenseAgreement/Admin/EditLicenseAgreementController.php | +0 | −2 | Go to diff View file |
M | src/common/FRS/LicenseAgreement/Admin/ListLicenseAgreementsController.php | +0 | −2 | Go to diff View file |
M | src/common/FRS/PermissionsPerGroup/PackagePermissionPerGroupRepresentationBuilder.php | +0 | −1 | Go to diff View file |
M | src/common/FRS/PermissionsPerGroup/PermissionPerTypeExtractor.php | +0 | −3 | Go to diff View file |
M | src/common/FRS/ServiceFile.class.php | +0 | −1 | Go to diff View file |
M | src/common/FRS/UploadedLinkPresenter.php | +0 | −3 | Go to diff View file |
M | src/common/FRS/UploadedLinksRetriever.php | +0 | −1 | Go to diff View file |
M | src/common/Instrument/Prometheus/Prometheus.php | +0 | −11 | Go to diff View file |
M | src/common/News/PermissionsPerGroup.php | +0 | −2 | Go to diff View file |
M | src/common/Project/Admin/Navigation/NavigationPresenterBuilder.php | +0 | −1 | Go to diff View file |
M | src/common/Project/Admin/ProjectUGroup/MemberRemovalController.php | +0 | −3 | Go to diff View file |
M | src/common/Project/Admin/ProjectUGroup/ProjectImportCleanupUserCreatorFromAdministrators.php | +0 | −6 | Go to diff View file |
M | src/common/Project/Admin/ProjectUGroup/UGroupListPresenterBuilder.php | +0 | −3 | Go to diff View file |
M | src/common/Project/Admin/ProjectUGroup/UserAndProjectUGroupRelationshipEvent.php | +0 | −4 | Go to diff View file |
M | src/common/Project/Hierarchy/HierarchyManager.class.php | +0 | −3 | Go to diff View file |
M | src/common/Project/ProjectCreationData.class.php | +0 | −1 | Go to diff View file |
M | src/common/Project/ProjectCreator.class.php | +0 | −3 | Go to diff View file |
M | src/common/Project/ProjectManager.class.php | +0 | −1 | Go to diff View file |
M | src/common/Project/ProjectUGroup.php | +0 | −1 | Go to diff View file |
M | src/common/Project/ProjectXMLExporter.class.php | +0 | −1 | Go to diff View file |
M | src/common/Project/ProjectXMLImporter.class.php | +0 | −2 | Go to diff View file |
M | src/common/Project/Project_SOAPServer.class.php | +0 | −1 | Go to diff View file |
M | src/common/Project/REST/v1/ProjectResource.class.php | +0 | −5 | Go to diff View file |
M | src/common/Project/REST/v1/RestProjectCreator.php | +0 | −3 | Go to diff View file |
M | src/common/Project/REST/v1/ServiceResource.php | +0 | −1 | Go to diff View file |
M | src/common/Project/REST/v1/UserGroupResource.class.php | +0 | −2 | Go to diff View file |
M | src/common/Project/Service/ServiceCreator.php | +0 | −8 | Go to diff View file |
M | src/common/Project/Service/ServicePOSTDataBuilder.php | +0 | −3 | Go to diff View file |
M | src/common/Project/Service/ServiceUpdator.php | +0 | −5 | Go to diff View file |
M | src/common/Project/Service/ServiceUsageFactory.class.php | +0 | −2 | Go to diff View file |
M | src/common/Project/Service/ServiceUsageManager.class.php | +0 | −4 | Go to diff View file |
M | src/common/Project/Service/ServicesPresenter.php | +0 | −2 | Go to diff View file |
M | src/common/Project/ServiceManager.class.php | +0 | −2 | Go to diff View file |
M | src/common/Project/UGroupLiteralizer.class.php | +0 | −4 | Go to diff View file |
M | src/common/Project/UGroupManager.class.php | +0 | −5 | Go to diff View file |
M | src/common/Project/UGroups/Membership/MemberRemover.php | +0 | −2 | Go to diff View file |
M | src/common/Project/Webhook/Log/StatusLogger.php | +0 | −1 | Go to diff View file |
M | src/common/REST/QueryParameterParser.php | +0 | −3 | Go to diff View file |
M | src/common/REST/TokenManager.class.php | +0 | −1 | Go to diff View file |
M | src/common/Request/DispatchTemporaryRedirect.php | +0 | −2 | Go to diff View file |
M | src/common/Request/DispatchableWithRequest.php | +0 | −2 | Go to diff View file |
M | src/common/Request/FrontRouter.php | +0 | −1 | Go to diff View file |
M | src/common/Request/LegacyRoutesController.php | +0 | −2 | Go to diff View file |
M | src/common/TreeNode/TreeNodeCallback.class.php | +0 | −1 | Go to diff View file |
M | src/common/TreeNode/TreeNodeMapper.class.php | +0 | −1 | Go to diff View file |
M | src/common/User/AccessKey/Scope/AccessKeyScopeRetriever.php | +0 | −1 | Go to diff View file |
M | src/common/User/Account/ChangeAvatarController.php | +0 | −2 | Go to diff View file |
M | src/common/User/ForgeUserGroupFactory.php | +0 | −2 | Go to diff View file |
M | src/common/User/LoginManager.class.php | +0 | −1 | Go to diff View file |
M | src/common/User/Password/PasswordExpirationChecker.class.php | +0 | −1 | Go to diff View file |
M | src/common/User/Profile/ProfilePresenterBuilder.php | +0 | −3 | Go to diff View file |
M | src/common/User/REST/v1/UserResource.php | +0 | −2 | Go to diff View file |
M | src/common/User/User.class.php | +0 | −1 | Go to diff View file |
M | src/common/User/UserManager.class.php | +0 | −4 | Go to diff View file |
M | src/common/User/UserStatusManager.class.php | +0 | −3 | Go to diff View file |
M | src/common/User/UserSuspensionManager.php | +0 | −18 | Go to diff View file |
M | src/common/User/User_SSHKeyDumper.class.php | +0 | −1 | Go to diff View file |
M | src/common/User/XML/Import/UsersToBeImportedCollectionBuilder.php | +0 | −1 | Go to diff View file |
M | src/common/User/XML/UserXMLExportedCollection.php | +0 | −1 | Go to diff View file |
M | src/common/Widget/Event/UserWithStarBadgeCollector.php | +0 | −1 | Go to diff View file |
M | src/common/Widget/ProjectMembers/ProjectMembersPresenter.php | +0 | −1 | Go to diff View file |
M | src/common/Widget/Widget.class.php | +0 | −1 | Go to diff View file |
M | src/common/admin/ProjectCreation/ProjectCategoriesDisplayController.php | +0 | −2 | Go to diff View file |
M | src/common/admin/ProjectCreation/ProjectFieldsDisplayController.php | +0 | −2 | Go to diff View file |
M | src/common/admin/ProjectCreation/ProjectFieldsUpdateController.php | +0 | −2 | Go to diff View file |
M | src/common/admin/ProjectCreation/WebhooksDisplayController.php | +0 | −2 | Go to diff View file |
M | src/common/admin/ProjectCreation/WebhooksUpdateController.php | +0 | −2 | Go to diff View file |
M | src/common/admin/ProjectCreationModerationDisplayController.php | +0 | −2 | Go to diff View file |
M | src/common/admin/ProjectCreationModerationUpdateController.php | +0 | −2 | Go to diff View file |
M | src/common/admin/ProjectTemplatesController.php | +0 | −2 | Go to diff View file |
M | src/common/backend/BackendSVN.class.php | +0 | −3 | Go to diff View file |
M | src/common/cvs/ViewVC/ViewVCController.php | +0 | −2 | Go to diff View file |
M | src/common/dao/CodendiDataAccess.class.php | +0 | −3 | Go to diff View file |
M | src/common/dao/UserSuspensionDao.php | +0 | −11 | Go to diff View file |
M | src/common/dao/include/DataAccessObject.class.php | +0 | −2 | Go to diff View file |
M | src/common/include/Codendi_Request.class.php | +0 | −1 | Go to diff View file |
M | src/common/include/URLVerification.class.php | +0 | −10 | Go to diff View file |
M | src/common/include/XMLConvertor.php | +0 | −1 | Go to diff View file |
M | src/common/layout/BreadCrumbDropdown/BreadCrumb.php | +0 | −3 | Go to diff View file |
M | src/common/layout/BreadCrumbDropdown/BreadCrumbPresenter.php | +0 | −1 | Go to diff View file |
M | src/common/layout/BreadCrumbDropdown/BreadCrumbPresenterBuilder.php | +0 | −1 | Go to diff View file |
M | src/common/layout/HomePage/LastMonthStatisticsCollectorSVN.php | +0 | −6 | Go to diff View file |
M | src/common/layout/HomePage/StatisticsCollectorSVN.php | +0 | −3 | Go to diff View file |
M | src/common/layout/ThemeManager.class.php | +0 | −1 | Go to diff View file |
M | src/common/layout/ThemeVariation.php | +0 | −4 | Go to diff View file |
M | src/common/mail/MailAccountSuspensionAlertPresenter.php | +0 | −3 | Go to diff View file |
M | src/common/mail/MailBuilder.php | +0 | −3 | Go to diff View file |
M | src/common/mail/MailManager.class.php | +0 | −1 | Go to diff View file |
M | src/common/mail/MailNotificationBuilder.php | +0 | −2 | Go to diff View file |
M | src/common/mail/MailPresenterFactory.class.php | +0 | −4 | Go to diff View file |
M | src/common/permission/PermissionsManager.class.php | +0 | −1 | Go to diff View file |
M | src/common/plugin/PluginLegacyController.php | +0 | −3 | Go to diff View file |
M | src/common/reference/ReferenceGetTooltipContentEvent.php | +0 | −3 | Go to diff View file |
M | src/common/reference/ReferenceManager.class.php | +0 | −1 | Go to diff View file |
M | src/common/search/SearchController.class.php | +0 | −1 | Go to diff View file |
M | src/common/svn/SVN_LogFactory.class.php | +0 | −2 | Go to diff View file |
M | src/common/svn/SVN_RepositoryListing.class.php | +0 | −2 | Go to diff View file |
M | src/common/svn/SVN_Svnlook.class.php | +0 | −2 | Go to diff View file |
M | src/common/svn/viewvc/ViewVCController.php | +0 | −2 | Go to diff View file |
M | src/common/system_event/include/RootDailyStartEvent.php | +0 | −3 | Go to diff View file |
M | src/common/system_event/include/SystemEventUserActiveStatusChange.php | +0 | −1 | Go to diff View file |
M | src/common/templating/mustache/SiteContentRenderer.php | +0 | −2 | Go to diff View file |
M | src/common/tracker/Artifact.class.php | +0 | −1 | Go to diff View file |
M | src/common/tracker/ArtifactStaticMultiListFieldXMLExporter.class.php | +0 | −1 | Go to diff View file |
M | src/common/trove/TroveCatListController.php | +0 | −3 | Go to diff View file |
M | src/common/xml/RNGValidator.class.php | +0 | −2 | Go to diff View file |
M | src/common/xml/XMLImportHelper.php | +0 | −1 | Go to diff View file |
M | src/core/RSS/News/LatestNewsController.php | +0 | −2 | Go to diff View file |
M | src/core/RSS/Project/LatestProjectController.php | +0 | −2 | Go to diff View file |
M | src/tuleap-cfg/Command/SystemControlTuleapCron.php | +0 | −6 | Go to diff View file |
M | src/www/include/utils_soap.php | +0 | −2 | Go to diff View file |
M | tests/lib/TemporaryTestDirectory.php | +0 | −1 | Go to diff View file |
M | tests/phpcs/non-psr-rules.xml | +4 | −0 | Go to diff View file |
M | tests/phpunit/common/Plugin/_fixtures/customplugins/customdoc/include/customdocPlugin.php | +0 | −3 | Go to diff View file |
M | tests/phpunit/common/Plugin/_fixtures/plugins/doc/include/docPlugin.php | +0 | −3 | Go to diff View file |
M | tests/phpunit/tuleap-cfg/Command/SystemControlCommandDockerCentos7Test.php | +0 | −1 | Go to diff View file |
M | tests/phpunit/tuleap-cfg/Command/SystemControlCommandTest.php | +0 | −1 | Go to diff View file |
M | tools/utils/generate-po.php | +0 | −2 | Go to diff View file |