Skip to content
Snippets Groups Projects

Issue #3222251: Replace all isset constructs with the null coalescing operator

Closed Björn Brala requested to merge issue/drupal-3222251:3222251-replace-all-isset into 9.3.x
334 files
+ 574
584
Compare changes
  • Side-by-side
  • Inline
Files
334
+ 1
1
@@ -354,7 +354,7 @@ function _batch_process() {
// completion level of the current operation.
$current = $total - $remaining + $finished;
$percentage = _batch_api_percentage($total, $current);
$elapsed = isset($current_set['elapsed']) ? $current_set['elapsed'] : 0;
$elapsed = $current_set['elapsed'] ?? 0;
$values = [
'@remaining' => $remaining,
'@total' => $total,
Loading