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
reduced argument by reference from Redis adapter
  • Loading branch information
marc-mabe committed Apr 18, 2016
commit 98a891cac4578c54aa8838ce2b64467a5b97cc62
4 changes: 2 additions & 2 deletions src/Storage/Adapter/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ protected function internalAddItem($normalizedKey, $value)
* @return bool
* @throws Exception\RuntimeException
*/
protected function internalTouchItem(& $normalizedKey)
protected function internalTouchItem($normalizedKey)
{
$redis = $this->getRedisResource();
try {
Expand Down Expand Up @@ -547,7 +547,7 @@ protected function internalGetCapabilities()
*
* @throws Exception\ExceptionInterface
*/
protected function internalGetMetadata(& $normalizedKey)
protected function internalGetMetadata($normalizedKey)
{
$redis = $this->getRedisResource();
$metadata = [];
Expand Down