Skip to content

Commit

Permalink
Merge pull request #23736 from carusogabriel/variable
Browse files Browse the repository at this point in the history
[5.6] Fix undefined variable
  • Loading branch information
GrahamCampbell authored Mar 29, 2018
2 parents 0ebe9fe + 59a77e6 commit 368f469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Cache/RedisTaggedCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function increment($key, $value = 1)
*/
public function decrement($key, $value = 1)
{
$this->pushStandardKeys($s->tags->getNamespace(), $key);
$this->pushStandardKeys($this->tags->getNamespace(), $key);

parent::decrement($key, $value);
}
Expand Down

0 comments on commit 368f469

Please sign in to comment.