Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix code so it follows the PSR-2 rules. #22

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ This allows you retrieve all the cached data at once. You get the meta data by s

### Erase data ###

For erasing cached data are these three methods available:
For erasing cached data are these four methods available:

- `erase($key)` Erases a single entry by its key.
- `eraseAll()` Erases all entries from the Cache file.
Expand All @@ -154,6 +154,8 @@ For erasing cached data are these three methods available:
?>
```

- `autoEraseExpired(<$flag>)` Erases items automatically when calling `isCached()`, `retreive()`, and `retreiveAll()`

### Check cached data ###

`isCached($key)`
Expand Down
Loading