Skip to content

Commit

Permalink
docblock fix for ApcStore: put() is a void function, therefore foreve…
Browse files Browse the repository at this point in the history
…r() is void (#13871)
  • Loading branch information
halaei authored and taylorotwell committed Jun 4, 2016
1 parent 1bd59e5 commit f79332e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Cache/ApcStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ public function decrement($key, $value = 1)
*
* @param string $key
* @param mixed $value
* @return array|bool
* @return void
*/
public function forever($key, $value)
{
return $this->put($key, $value, 0);
$this->put($key, $value, 0);
}

/**
Expand Down

0 comments on commit f79332e

Please sign in to comment.