Jake Vanderwerf
3 days ago ba1e1ccf869b818f7a7a897264dfea05563a7796
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