File tree Expand file tree Collapse file tree 14 files changed +18
-18
lines changed
Filter options
components/console/helpers Expand file tree Collapse file tree 14 files changed +18
-18
lines changed
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ This results in:
182
182
.. tip ::
183
183
184
184
You can create a multiple-line page title using a header cell that spans
185
- the enire table width::
185
+ the entire table width::
186
186
187
187
$table->setHeaders(array(
188
188
array(new TableCell('Main table title', array('colspan' => 3))),
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ Configuring the Environment in the Dashboard
175
175
PHP Settings
176
176
~~~~~~~~~~~~
177
177
178
- The PHP version and enabled extensions are configuable under the PHP settings
178
+ The PHP version and enabled extensions are configurable under the PHP settings
179
179
of your App within the fortrabbit Dashboard.
180
180
181
181
Environment Variables
@@ -187,7 +187,7 @@ config files get loaded. ENV vars are configuable in fortrabbit Dashboard as wel
187
187
Document Root
188
188
~~~~~~~~~~~~~
189
189
190
- The document root is configuable for every custom domain you setup for your App.
190
+ The document root is configurable for every custom domain you setup for your App.
191
191
The default is ``/htdocs ``, but for Symfony you probably want to change it to
192
192
``/htdocs/web ``. You also do so in the fortrabbit Dashboard under ``Domain `` settings.
193
193
Original file line number Diff line number Diff line change @@ -842,7 +842,7 @@ Doctrine allows you to use any PHP object to hold your data and relies on
842
842
mapping metadata information to map an object's data to a particular database
843
843
table.
844
844
845
- Doctrine has a lot more complex features to learn, like relationshps , complex queries,
845
+ Doctrine has a lot more complex features to learn, like relationships , complex queries,
846
846
and event listeners.
847
847
848
848
Learn more
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ to hold those associated objects.
162
162
163
163
While the many-to-one mapping shown earlier was mandatory, this one-to-many
164
164
mapping is optional. It is included here to help demonstrate Doctrine's range
165
- of relationship management capabailties . Plus, in the context of this application,
165
+ of relationship management capabilities . Plus, in the context of this application,
166
166
it will likely be convenient for each ``Category `` object to automatically
167
167
own a collection of its related ``Product `` objects.
168
168
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Suppose you have a Task form with a tags ``text`` type::
49
49
}
50
50
51
51
Internally the ``tags `` are stored as an array, but displayed to the user as a
52
- simple comma seperated string to make them easier to edit.
52
+ simple comma separated string to make them easier to edit.
53
53
54
54
This is a *perfect * time to attach a custom data transformer to the ``tags ``
55
55
field. The easiest way to do this is with the :class: `Symfony\\ Component\\ Form\\ CallbackTransformer `
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ method, pass the submitted data directly to
89
89
When submitting a form via a "PATCH" request, you may want to update only a few
90
90
submitted fields. To achieve this, you may pass an optional second boolean
91
91
parameter to ``submit() ``. Passing ``false `` will remove any missing fields
92
- within the form object. Otherwise, the mising fields will be set to ``null ``.
92
+ within the form object. Otherwise, the missing fields will be set to ``null ``.
93
93
94
94
.. _form-submit-request :
95
95
Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ trusted_hosts
315
315
316
316
A lot of different attacks have been discovered relying on inconsistencies
317
317
in handling the ``Host `` header by various software (web servers, reverse
318
- proxies, web frameworks, etc.). Basically, everytime the framework is
318
+ proxies, web frameworks, etc.). Basically, every time the framework is
319
319
generating an absolute URL (when sending an email to reset a password for
320
320
instance), the host might have been manipulated by an attacker.
321
321
Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ These options inherit from the :doc:`ChoiceType </reference/forms/types/choice>`
271
271
.. note ::
272
272
273
273
This option expects an array of entity objects (that's actually the same as with
274
- the ``ChoiceType `` field, whichs requires an array of the preferred "values").
274
+ the ``ChoiceType `` field, which requires an array of the preferred "values").
275
275
276
276
.. include :: /reference/forms/types/options/choice_type_translation_domain.rst.inc
277
277
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ search_password
196
196
197
197
**type **: ``string `` **default **: ``null ``
198
198
199
- This is your read-only user's password, wich will be used to authenticate
199
+ This is your read-only user's password, which will be used to authenticate
200
200
against the LDAP server in order to fetch the user's information.
201
201
202
202
default_roles
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ How to Create your Custom Encoder
6
6
7
7
The :doc: `Serializer Component </components/serializer >` uses Normalizers
8
8
to transform any data to an array. Then, by leveraging *Encoders *, that data can
9
- be convereted into any data-structure (e.g. JSON).
9
+ be converted into any data-structure (e.g. JSON).
10
10
11
11
The Component provides several built-in encoders that are described
12
12
:doc: `in their own section </serializer/encoders >` but you may want
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ fetched from the container::
96
96
.. caution ::
97
97
98
98
Don't use ``get() `` to get a service that you want to inject as constructor
99
- argument, the service is not yet availabe . Instead, use a
99
+ argument, the service is not yet available . Instead, use a
100
100
``Reference `` instance as shown above.
101
101
102
102
Method Calls
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ convention, the old ``app.mailer`` service is renamed to
154
154
155
155
use Symfony\Component\DependencyInjection\Reference;
156
156
157
- $container->register('app.decorating_mailer', 'AppBundle\DeocratingMailer ')
157
+ $container->register('app.decorating_mailer', 'AppBundle\DecoratingMailer ')
158
158
->setDecoratedService('foo', 'app.decorating_mailer.wooz')
159
159
->addArgument(new Reference('app.decorating_mailer.wooz'))
160
160
// ...
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ The **minimum configuration** to get your application running under Apache is:
50
50
</Directory>
51
51
52
52
# uncomment the following lines if you install assets as symlinks
53
- # or run into problems when compiling LESS/Sass/CoffeScript assets
53
+ # or run into problems when compiling LESS/Sass/CoffeeScript assets
54
54
# <Directory /var/www/project>
55
55
# Options FollowSymlinks
56
56
# </Directory>
@@ -88,7 +88,7 @@ and increase web server performance:
88
88
</Directory>
89
89
90
90
# uncomment the following lines if you install assets as symlinks
91
- # or run into problems when compiling LESS/Sass/CoffeScript assets
91
+ # or run into problems when compiling LESS/Sass/CoffeeScript assets
92
92
# <Directory /var/www/project>
93
93
# Options FollowSymlinks
94
94
# </Directory>
@@ -200,7 +200,7 @@ directive to pass requests for PHP files to PHP FPM:
200
200
</Directory>
201
201
202
202
# uncomment the following lines if you install assets as symlinks
203
- # or run into problems when compiling LESS/Sass/CoffeScript assets
203
+ # or run into problems when compiling LESS/Sass/CoffeeScript assets
204
204
# <Directory /var/www/project>
205
205
# Options FollowSymlinks
206
206
# </Directory>
@@ -236,7 +236,7 @@ should look something like this:
236
236
</Directory>
237
237
238
238
# uncomment the following lines if you install assets as symlinks
239
- # or run into problems when compiling LESS/Sass/CoffeScript assets
239
+ # or run into problems when compiling LESS/Sass/CoffeeScript assets
240
240
# <Directory /var/www/project>
241
241
# Options FollowSymlinks
242
242
# </Directory>
Original file line number Diff line number Diff line change @@ -937,7 +937,7 @@ Suppose ``description`` equals ``I <3 this product``:
937
937
938
938
.. code-block :: twig
939
939
940
- <!-- outupt escaping is on automatically -->
940
+ <!-- output escaping is on automatically -->
941
941
{{ description }} <!-- I <3 this product -->
942
942
943
943
<!-- disable output escaping with the raw filter -->
You can’t perform that action at this time.
0 commit comments