stable

Clone or download

Read-only

request #13943: Remove all file level phpcs ignore annotations

Files has been auto-fixed and more precise annotations added when needed. Change-Id: I101f6ad21476619b37a5a19d0715cb9e9a60ac47

Modified Files

Name
M plugins/agiledashboard/include/AgileDashboard/REST/v1/MilestoneRepresentation.class.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/CSVRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_PermissionsManager.class.php +101 −75 Go to diff View file
M plugins/docman/include/Docman_PermissionsManagerDao.class.php +21 −14 Go to diff View file
M plugins/forumml/include/MessageArchiver.php +101 −94 Go to diff View file
M plugins/git/db/mysql/updates/2017/201703301111_create_table_plugin_git_log_read.php +1 −2 Go to diff View file
M plugins/git/db/mysql/updates/2017/201704031442_create_table_plugin_git_full_history_checkpoint.php +1 −2 Go to diff View file
M plugins/git/tests/SystemEvents/SystemEvent_GIT_GERRIT_MIGRATIONTest.php +34 −17 Go to diff View file
M plugins/git/tests/SystemEvents/SystemEvent_GIT_REPO_DELETETest.php +9 −7 Go to diff View file
M plugins/referencealias_core/include/referencealias_corePlugin.php +1 −2 Go to diff View file
M plugins/statistics/include/Statistics_ServicesUsageDao.class.php +72 −39 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201704051751_add_index_to_tracker_changeset_value_list.php +5 −4 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201704051759_add_index_on_tracker_changeset_value_artifactlink.php +5 −4 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201705311530_add_index_on_visit_time_of_recently_visited_artifacts.php +1 −2 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201710201508_add_project_index_on_unused_artifact_link_types.php +1 −2 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201712131642_add_changesets_notification_log_table.php +1 −2 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact.class.php +264 −149 Go to diff View file
M plugins/tracker/include/Tracker/Tracker.class.php +383 −275 Go to diff View file
M plugins/tracker/include/Workflow/Action.class.php +7 −9 Go to diff View file
M plugins/tracker/include/Workflow/Action/Transitions/DefineWorkflow.class.php +37 −34 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/CIBuild/Transition_PostAction_CIBuild.class.php +52 −34 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/CIBuild/Transition_PostAction_CIBuildDao.class.php +15 −10 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Field/Transition_PostAction_FieldFactory.class.php +47 −25 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Field/dao/Transition_PostAction_FieldDao.class.php +67 −55 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Transition_PostActionFactory.class.php +28 −14 Go to diff View file
M plugins/tracker/include/Workflow/Transition.class.php +64 −35 Go to diff View file
M plugins/tracker/include/Workflow/Transition/Condition/Permissions.class.php +21 −14 Go to diff View file
M plugins/tracker/include/Workflow/Transition/ConditionFactory.class.php +22 −13 Go to diff View file
M plugins/tracker/include/Workflow/TransitionFactory.class.php +12 −10 Go to diff View file
M plugins/tracker/include/Workflow/Workflow.class.php +69 −47 Go to diff View file
M plugins/tracker/include/Workflow/WorkflowFactory.class.php +5 −4 Go to diff View file
M plugins/tracker/include/Workflow/WorkflowWithoutTransition.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Workflow_Dao.class.php +2 −1 Go to diff View file
M plugins/tracker/include/Workflow/Workflow_TransitionDao.class.php +2 −1 Go to diff View file
M plugins/tracker/tests/Artifact/Changeset/FieldsValidatorTest.php +31 −16 Go to diff View file
M plugins/tracker/tests/Artifact/Tracker_ArtifactCreatorTest.php +15 −8 Go to diff View file
M src/common/Event/Event.class.php +125 −126 Go to diff View file
D src/common/PFO/autoload.php +0 −20 Go to diff View file
M src/common/Project/ProjectManager.class.php +148 −102 Go to diff View file
D src/common/Token/autoload.php +0 −20 Go to diff View file
M src/common/User/UserManager.class.php +125 −82 Go to diff View file
D src/common/User/autoload.php +0 −44 Go to diff View file
M src/common/dao/UserGroupDao.class.php +2 −2 Go to diff View file
M src/common/search/Presenters/SearchPresenter.class.php +6 −5 Go to diff View file
M src/common/tracker/Artifact.class.php +3 −3 Go to diff View file
M src/common/tracker/HTML/ArtifactFileHtml.class.php +29 −34 Go to diff View file
M src/common/tracker/HTML/ArtifactHtml.class.php +624 −632 Go to diff View file
M src/common/tracker/HTML/ArtifactTypeHtml.class.php +2170 −2100 Go to diff View file
M src/www/api/reference/extractCross.php +6 −9 Go to diff View file
M src/www/themes/BurningParrot/Navbar/UserNavPresenter.php +13 −13 Go to diff View file
M tests/bin/SimpleTest11x/RunTestSuite.php +1 −3 Go to diff View file
M tests/bin/SimpleTest11x/TuleapTestCase.php +44 −28 Go to diff View file
M tests/phpunit/common/Include/URLVerification_AssertValidUrlTest.php +2 −3 Go to diff View file
M tests/phpunit/common/Plugin/PluginTest.php +1 −3 Go to diff View file
M tests/phpunit/common/User/UserManagerTest.php +1 −3 Go to diff View file
M tests/simpletest/MockeryExamplesTest.php +1 −3 Go to diff View file
M tests/simpletest/common/Dashboard/Project/ProjectDashboardXMLImporterTest.php +7 −6 Go to diff View file
M tests/simpletest/common/User/UserManagerTest.php +141 −80 Go to diff View file
M tests/soap/lib/SOAPBase.php +1 −3 Go to diff View file