Skip to content

Commit 549733f

Browse files
committed
psr has been applied, guzzle is altered
1 parent c852ac6 commit 549733f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Neo4jQueryAPI.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ public function beginTransaction(): Transaction
9393
*/
9494
private function handleRequestException(RequestExceptionInterface $e): void
9595
{
96-
// ✅ Corrected: Check if exception has a response
9796
$response = method_exists($e, 'getResponse') ? $e->getResponse() : null;
9897

9998
if ($response instanceof ResponseInterface) {

tests/Integration/Neo4jQueryAPIIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function testCreateBookmarks(): void
101101
$result = $this->api->run('MATCH (x:Node {hello: "world2"}) RETURN x');
102102
$bookmarks->addBookmarks($result->getBookmarks());
103103

104-
$this->assertCount(2, $result);
104+
$this->assertCount(1, $result);
105105
}
106106

107107

0 commit comments

Comments
 (0)