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

Commit

Permalink
Fix coding standards PSR-2
Browse files Browse the repository at this point in the history
  • Loading branch information
neeckeloo committed Apr 29, 2013
1 parent c778e98 commit 867e7bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Adapter/WinCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ protected function internalGetItems(array & $normalizedKeys)
$prefixL = strlen($prefix);
$result = array();
foreach ($fetch as $internalKey => & $value) {
$result[ substr($internalKey, $prefixL) ] = & $value;
$result[substr($internalKey, $prefixL)] = & $value;
}

return $result;
Expand Down

0 comments on commit 867e7bf

Please sign in to comment.