Jake Vanderwerf
8 days ago 3b83905603d44b1a08f8b2b36a605808ce686ad6
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 [];
   }
}