Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!10394
Add return types to update_test_* hooks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Add return types to update_test_* hooks
issue/drupal-3490638:3490638-update-test-return-types
into
11.x
Overview
0
Commits
2
Pipelines
2
Changes
16
Closed
Tobias Zimmermann
requested to merge
issue/drupal-3490638:3490638-update-test-return-types
into
11.x
4 months ago
Overview
0
Commits
2
Pipelines
2
Changes
16
Expand
Closes
#3490638
0
0
Merge request reports
Compare
11.x
version 1
f0cc530b
4 months ago
11.x (base)
and
latest version
latest version
cf4cb264
2 commits,
4 months ago
version 1
f0cc530b
1 commit,
4 months ago
16 files
+
34
−
238
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
core/modules/system/tests/modules/update_test_0/update_test_0.install
+
3
−
3
Options
@@ -10,17 +10,17 @@
@@ -10,17 +10,17 @@
/**
/**
* Dummy update_test_0 update 8001.
* Dummy update_test_0 update 8001.
*/
*/
function
update_test_0_update_8001
()
{
function
update_test_0_update_8001
()
:
void
{
}
}
/**
/**
* Dummy update_test_0 update 8002.
* Dummy update_test_0 update 8002.
*/
*/
function
update_test_0_update_8002
()
{
function
update_test_0_update_8002
()
:
void
{
}
}
/**
/**
* Dummy update_test_0 update 8003.
* Dummy update_test_0 update 8003.
*/
*/
function
update_test_0_update_8003
()
{
function
update_test_0_update_8003
()
:
void
{
}
}
Loading