Skip to content

Commit

Permalink
Fix put
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljennings committed Dec 3, 2019
1 parent c506331 commit a98e707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Broker.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function put(Cacheable $cacheable, $key, $value, $minutes = 60)
{
$minutes = $this->minutesToCarbon($minutes);

$value = $this->cache->tags($this->getTags($cacheable))->put($key, $value, );
$value = $this->cache->tags($this->getTags($cacheable))->put($key, $value, $minutes);

$this->event(new CacheableKeyWritten($cacheable, $key, $minutes));

Expand Down

0 comments on commit a98e707

Please sign in to comment.