Skip to content

Commit

Permalink
Fixed: put() method on Cacheable interface has misspelled parameter; …
Browse files Browse the repository at this point in the history
…also gave it a default value
  • Loading branch information
PHLAK committed Oct 6, 2016
1 parent a21ffef commit 5c63fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Interfaces/Cacheable.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface Cacheable
*
* @return bool True on sucess, otherwise false
*/
public function put($key, $data, $minute);
public function put($key, $data, $minutes = 0);

/**
* Put an item into the cache permanently
Expand Down

0 comments on commit 5c63fa5

Please sign in to comment.