Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0281948

Browse files
author
Christoph Menke
committed
Fix Section's forget method.
1 parent 5246276 commit 0281948

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Illuminate/Cache/Section.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function increment($key, $value = 1)
7575
*/
7676
public function decrement($key, $value = 1)
7777
{
78-
$this->store->decrement($this->sectionItemKey($key), $value);
78+
$this->store->decrement($this->sectionItemKey($key), $value);
7979
}
8080

8181
/**
@@ -98,7 +98,7 @@ public function forever($key, $value)
9898
*/
9999
public function forget($key)
100100
{
101-
$this->store->forget($this->sectionItemKey($key), $value);
101+
$this->store->forget($this->sectionItemKey($key));
102102
}
103103

104104
/**

0 commit comments

Comments
 (0)