Jake Vanderwerf
2026-05-31 d7e7d248cbe41cd7a9ef9c2fb022b6c4831f99a3
inc/managers/queue/TypeRegistry.php
@@ -22,7 +22,7 @@
   public function getExecutor(string $type): ?Executor
   {
      return $this->configs[$type]?->executor;
      return array_key_exists($type, $this->configs) ? $this->configs[$type]->executor : JVB()->queue()->executor;
   }
   public function getMergeable(string $type): ?Mergeable