Skip to content
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #48 from rpg600/patch-1
Browse files Browse the repository at this point in the history
Fixed cache key
  • Loading branch information
csarrazi committed Aug 25, 2015
2 parents 079fc43 + 79ffb33 commit 1874818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GuzzleHttp/Cache/DoctrineAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private function getKey(RequestInterface $request)
'method' => $request->getMethod(),
'uri' => $request->getUrl(),
'headers' => $request->getHeaders(),
'body' => $request->getBody(),
'body' => (string) $request->getBody(),
]));
}
}

0 comments on commit 1874818

Please sign in to comment.