Jake Vanderwerf
2026-05-23 75a097a018a0090f5902758353c578fce4aa2a25
inc/managers/queue/mergers/DefaultMerger.php
@@ -26,7 +26,7 @@
   public function merge(Operation $existing, Operation $incoming): Operation
   {
      foreach ((array) $this->chunkKey as $key) {
         $existing->requestData[$key] = array_merge(
         $existing->requestData[$key] = array_replace(
            $existing->requestData[$key] ?? [],
            $incoming->requestData[$key] ?? []
         );
@@ -35,4 +35,8 @@
      $existing->totalItems += $incoming->totalItems;
      return $existing;
   }
   public function matchCriteria(Operation $incoming): array
   {
      return [];
   }
}