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
62
62
~~~~~~~~~~~~~~~~~~~~~~~
63
63
64
64
This 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 )::
66
66
67
67
use Symfony\Component\Cache\Adapter\PhpFilesAdapter;
68
68
@@ -212,12 +212,12 @@ Php Array Cache Adapter
212
212
~~~~~~~~~~~~~~~~~~~~~~~
213
213
214
214
This 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::
216
216
217
217
use Symfony\Component\Cache\Adapter\PhpArrayAdapter;
218
218
use Symfony\Component\Cache\Adapter\PhpFilesAdapter;
219
219
220
- // somehow, decide it's time to warmup the cache!
220
+ // somehow, decide it's time to warm up the cache!
221
221
if ($needsWarmup) {
222
222
// some static values
223
223
$values = array(
You can’t perform that action at this time.
0 commit comments