Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge pull request #36 from marc-mabe/hotfix/AbstractAdapter_internal…
Browse files Browse the repository at this point in the history
…DecrementItems

fixed AbstractAdapter::internalDecrementItems
  • Loading branch information
marc-mabe committed Dec 20, 2015
2 parents 0031dd7 + 8ef2db4 commit 32576c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Adapter/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -1466,7 +1466,7 @@ protected function internalDecrementItems(array & $normalizedKeyValuePairs)
{
$result = [];
foreach ($normalizedKeyValuePairs as $normalizedKey => $value) {
$newValue = $this->decrementItem($normalizedKey, $value);
$newValue = $this->internalDecrementItem($normalizedKey, $value);
if ($newValue !== false) {
$result[$normalizedKey] = $newValue;
}
Expand Down

0 comments on commit 32576c3

Please sign in to comment.