File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Php Files Cache Adapter
6262~~~~~~~~~~~~~~~~~~~~~~~
6363
6464This adapter is very similar to the Filesystem adapter, except that the saving creates
65- a ``.php `` file, which is included on fetch (allowing the file to me saved in OpCache )::
65+ a ``.php `` file, which is included on fetch (allowing the file to be saved in OPcache )::
6666
6767 use Symfony\Component\Cache\Adapter\PhpFilesAdapter;
6868
@@ -212,12 +212,12 @@ Php Array Cache Adapter
212212~~~~~~~~~~~~~~~~~~~~~~~
213213
214214This adapter is a highly performant way to cache static data (e.g. application configuration)
215- that is optimized and preloaded into OpCache memory storage::
215+ that is optimized and preloaded into OPcache memory storage::
216216
217217 use Symfony\Component\Cache\Adapter\PhpArrayAdapter;
218218 use Symfony\Component\Cache\Adapter\PhpFilesAdapter;
219219
220- // somehow, decide it's time to warmup the cache!
220+ // somehow, decide it's time to warm up the cache!
221221 if ($needsWarmup) {
222222 // some static values
223223 $values = array(
You can’t perform that action at this time.
0 commit comments