Skip to content

Commit

Permalink
Merge pull request #7596 from mbessolov/patch-1
Browse files Browse the repository at this point in the history
Correct method names and broken link in docs
  • Loading branch information
Ocramius authored Feb 9, 2019
2 parents e003bb2 + 624ee78 commit de97061
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/en/reference/caching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ abstract protected methods that each of the drivers must
implement:


- \_doFetch($id)
- \_doContains($id)
- \_doSave($id, $data, $lifeTime = false)
- \_doDelete($id)
- doFetch($id)
- doContains($id)
- doSave($id, $data, $lifeTime = false)
- doDelete($id)

The public methods ``fetch()``, ``contains()`` etc. use the
above protected methods which are implemented by the drivers. The
Expand All @@ -43,7 +43,7 @@ these methods.

This documentation does not cover every single cache driver included
with Doctrine. For an up-to-date-list, see the
`cache directory on GitHub <https://github.com/doctrine/cache/tree/master/lib/Doctrine/Common/Cache>`.
`cache directory on GitHub <https://github.com/doctrine/cache/tree/master/lib/Doctrine/Common/Cache>`_.

APC
~~~
Expand Down

0 comments on commit de97061

Please sign in to comment.