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
!11549
Issue
#3514226
: Add void return to functions in global namespace
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#3514226
: Add void return to functions in global namespace
issue/drupal-3514226:3514226-global-void
into
11.x
Overview
0
Commits
4
Pipelines
6
Changes
71
Open
Michael Strelan
requested to merge
issue/drupal-3514226:3514226-global-void
into
11.x
2 months ago
Overview
0
Commits
4
Pipelines
6
Changes
71
Expand
Closes
#3514226
0
0
Merge request reports
Compare
11.x
version 5
c019a5db
2 months ago
version 4
11d02cca
2 months ago
version 3
1f8a5746
2 months ago
version 2
138e4d5d
2 months ago
version 1
44c9c047
2 months ago
11.x (base)
and
latest version
latest version
a57de539
4 commits,
2 months ago
version 5
c019a5db
3 commits,
2 months ago
version 4
11d02cca
3 commits,
2 months ago
version 3
1f8a5746
4 commits,
2 months ago
version 2
138e4d5d
3 commits,
2 months ago
version 1
44c9c047
2 commits,
2 months ago
71 files
+
193
−
1333
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
71
Search (e.g. *.vue) (Ctrl+P)
core/includes/batch.inc
+
1
−
1
Options
@@ -557,7 +557,7 @@ function _batch_finished() {
* @see _batch_page()
* @see drupal_register_shutdown_function()
*/
function
_batch_shutdown
()
{
function
_batch_shutdown
()
:
void
{
if
((
$batch
=
batch_get
())
&&
_batch_needs_update
())
{
\Drupal
::
service
(
'batch.storage'
)
->
update
(
$batch
);
}
Loading