_dummy_queue = (object)[ 'handler' => $handler, 'args' => $args, 'options' => $options, ]; return 0; } /** * Get the first task. * * @param int $blocking * @return ?object */ public function getTask(int $blocking = 0): ?object { $result = $this->_dummy_queue; $this->_dummy_queue = null; return $result; } }