Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed argument by reference from internal 'MongoDb::fetchFromCollec…
…tion()'
  • Loading branch information
marc-mabe committed Apr 18, 2016
commit b0f97181d61e269934376bc82f6b986e3fc5f47c
2 changes: 1 addition & 1 deletion src/Storage/Adapter/MongoDb.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ protected function internalGetMetadata($normalizedKey)
*
* @throws Exception\RuntimeException
*/
private function fetchFromCollection(& $normalizedKey)
private function fetchFromCollection($normalizedKey)
{
try {
return $this->getMongoDbResource()->findOne(['key' => $this->namespacePrefix . $normalizedKey]);
Expand Down