Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork5.3k
Closed
Description
https://github.com/symfony/symfony-docs/blob/master/components/cache/psr6_psr16_adapters.rst
In the last code example is new instance ofPsr6Cache. Shouldn't it be instance ofPsr16Cache since you are importingSymfony\Component\Cache\Psr16Cache?
useSymfony\Component\Cache\Adapter\FilesystemAdapter;useSymfony\Component\Cache\Psr16Cache;// the PSR-6 cache object that you want to use$psr6Cache =newFilesystemAdapter();// a PSR-16 cache that uses your cache internally!$psr16Cache =newPsr6Cache($psr6Cache);# <--- Wrong?$psr16Cache =newPsr16Cache($psr6Cache);# <--- Correct?// now use this wherever you want$githubApiClient =newGitHubApiClient($psr16Cache);