Skip to content

Commit

Permalink
Fixed incorrect MissingNameException import in CollectionResource
Browse files Browse the repository at this point in the history
  • Loading branch information
ddebowczyk committed Sep 16, 2023
1 parent 055eb65 commit 0397723
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
composer.phar
/vendor/
.idea
.env
.env.testing
4 changes: 2 additions & 2 deletions src/Resources/CollectionResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Probots\Pinecone\Resources;

use Probots\Pinecone\Requests\Collections;
use Probots\Pinecone\Requests\Exceptions\MissingNameException;
use Probots\Pinecone\Exceptions\MissingNameException;
use Saloon\Contracts\Connector;
use Saloon\Contracts\Response;

Expand Down Expand Up @@ -69,4 +69,4 @@ public function delete(): Response

return $this->connector->send(new Collections\Delete($this->name));
}
}
}

0 comments on commit 0397723

Please sign in to comment.