Overrides Driver::enable
public function enable(string $callbackId) : string { try { $this->driver ->enable($callbackId); $this->enabledCallbacks[$callbackId] = true; } catch (InvalidCallbackError $e) { $e->addInfo("Creation trace", $this->getCreationTrace($callbackId)); $e->addInfo("Cancellation trace", $this->getCancelTrace($callbackId)); throw $e; } return $callbackId; }