File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
Filter options
Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ JMSSerializer
186
186
187
187
A popular third-party library, `JMS serializer `_, provides a more
188
188
sophisticated albeit more complex solution. This library includes the
189
- ability to configure how your objects should be serialize /deserialized via
189
+ ability to configure how your objects should be serialized /deserialized via
190
190
annotations (as well as YAML, XML and PHP), integration with the Doctrine ORM,
191
191
and handling of other complex cases (e.g. circular references).
192
192
Original file line number Diff line number Diff line change @@ -171,9 +171,9 @@ cookie_lifetime
171
171
172
172
**type **: ``integer `` **default **: ``null ``
173
173
174
- This determines the lifetime of the session - in seconds. It will use ``null `` by
174
+ This determines the lifetime of the session - in seconds. It will use ``null `` by
175
175
default, which means ``session.cookie_lifetime `` value from ``php.ini `` will be used.
176
- Setting this value to ``0 `` means the cookie is valid for the length of the browser
176
+ Setting this value to ``0 `` means the cookie is valid for the length of the browser
177
177
session.
178
178
179
179
cookie_path
@@ -204,7 +204,7 @@ cookie_httponly
204
204
205
205
**type **: ``Boolean `` **default **: ``false ``
206
206
207
- This determines whether cookies should only accessible through the HTTP protocol.
207
+ This determines whether cookies should only be accessible through the HTTP protocol.
208
208
This means that the cookie won't be accessible by scripting languages, such
209
209
as JavaScript. This setting can effectively help to reduce identity theft
210
210
through XSS attacks.
Original file line number Diff line number Diff line change 64
64
* @Assert\Email()
65
65
*/
66
66
protected $email;
67
-
67
+
68
68
// ...
69
69
}
70
70
97
97
98
98
// DON'T forget this use statement!!!
99
99
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
100
-
100
+
101
101
class Author
102
102
{
103
103
public static function loadValidatorMetadata(ClassMetadata $metadata)
142
142
**type **: ``string ``
143
143
144
144
The name of the entity manager to use for making the query to determine the
145
- uniqueness. If it's left blank, the correct entity manager will determined for
146
- this class. For that reason, this option should probably not need to be
145
+ uniqueness. If it's left blank, the correct entity manager will be determined
146
+ for this class. For that reason, this option should probably not need to be
147
147
used.
148
148
149
149
repositoryMethod
Original file line number Diff line number Diff line change @@ -903,7 +903,7 @@ translation.loader
903
903
904
904
**Purpose**: To register a custom service that loads translations
905
905
906
- By default, translations are loaded form the filesystem in a variety of different
906
+ By default, translations are loaded from the filesystem in a variety of different
907
907
formats (YAML, XLIFF, PHP, etc). If you need to load translations from some
908
908
other source, first create a class that implements the
909
909
:class:`Symfony\\Component\\Translation\\Loader\\LoaderInterface` interface::
Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ to see what options you have available.
267
267
268
268
Behind the scenes, these variables are made available to the ``FormView ``
269
269
object of your form when the Form component calls ``buildView `` and ``buildViewBottomUp ``
270
- on each "node" of your form tree. To see what "view" variables a particularly
270
+ on each "node" of your form tree. To see what "view" variables a particular
271
271
field has, find the source code for the form field (and its parent fields)
272
272
and look at the above two functions.
273
273
You can’t perform that action at this time.
0 commit comments