diff --git a/Storage/PineconeStorage.php b/Storage/PineconeStorage.php index 2c2d181..031a283 100644 --- a/Storage/PineconeStorage.php +++ b/Storage/PineconeStorage.php @@ -128,7 +128,7 @@ public function deletePageChunks($page, $firstChunkID) $this->runQuery('/vectors/delete', ['ids' => $ids]); } catch (\Exception $e) { // 5 is the code for "namespace not found" See #12 - if($e->getCode() !== 5) throw $e; + if ($e->getCode() !== 5) throw $e; } } diff --git a/helper.php b/helper.php index 656dbda..ce64a12 100644 --- a/helper.php +++ b/helper.php @@ -307,7 +307,6 @@ public function getLanguageLimit() /** * Store info about the last run * - * @param array $data * @return void */ public function setRunData(array $data)