File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -305,8 +305,8 @@ You can also create more customized pools:
305
305
Each pool manages a set of independent cache keys: keys from different pools
306
306
*never * collide, even if they share the same backend. This is achieved by prefixing
307
307
keys with a namespace that's generated by hashing the name of the pool, the name
308
- of the compiled container class and a :ref: `configurable seed <reference-cache-prefix-seed >`
309
- that defaults to the project directory.
308
+ of the cache adapter class and a :ref: `configurable seed <reference-cache-prefix-seed >`
309
+ that defaults to the project directory and compiled container class .
310
310
311
311
Each custom pool becomes a service whose service ID is the name of the pool
312
312
(e.g. ``custom_thing.cache ``). An autowiring alias is also created for each pool
Original file line number Diff line number Diff line change @@ -2708,7 +2708,7 @@ email_validation_mode
2708
2708
2709
2709
**type **: ``string `` **default **: ``loose ``
2710
2710
2711
- Sets the default value for
2711
+ Sets the default value for
2712
2712
:doc: `/reference/constraints/Email ` validator. The possible values are:
2713
2713
2714
2714
* ``loose ``, it uses a simple regular expression to validate the address (it
@@ -3225,9 +3225,9 @@ The cache clearer used to clear your PSR-6 cache.
3225
3225
prefix_seed
3226
3226
...........
3227
3227
3228
- **type **: ``string `` **default **: ``null ``
3228
+ **type **: ``string `` **default **: ``_%kernel.project_dir%.%kernel.container_class% ``
3229
3229
3230
- If defined, this value is used as part of the "namespace" generated for the
3230
+ This value is used as part of the "namespace" generated for the
3231
3231
cache item keys. A common practice is to use the unique name of the application
3232
3232
(e.g. ``symfony.com ``) because that prevents naming collisions when deploying
3233
3233
multiple applications into the same path (on different servers) that share the
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ Given this translation message:
50
50
You can specify the placeholder values as follows::
51
51
52
52
$builder->add('id', null, [
53
- 'choice ' => [
53
+ 'choices ' => [
54
54
'form.order.yes' => true,
55
55
'form.order.no' => false,
56
56
],
@@ -66,7 +66,7 @@ You can specify the placeholder values as follows::
66
66
If an array, the keys of the ``choices`` array must be used as keys::
67
67
68
68
$builder->add('id', null, [
69
- 'choice ' => [
69
+ 'choices ' => [
70
70
'form.order.yes' => true,
71
71
'form.order.no' => false,
72
72
],
You can’t perform that action at this time.
0 commit comments