File tree Expand file tree Collapse file tree 12 files changed +16
-16
lines changed
Filter options
components/console/helpers Expand file tree Collapse file tree 12 files changed +16
-16
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 @@ -48,7 +48,7 @@ Suppose you have a Task form with a tags ``text`` type::
48
48
}
49
49
50
50
Internally the ``tags `` are stored as an array, but displayed to the user as a
51
- simple comma seperated string to make them easier to edit.
51
+ simple comma separated string to make them easier to edit.
52
52
53
53
This is a *perfect * time to attach a custom data transformer to the ``tags ``
54
54
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 @@ -313,7 +313,7 @@ trusted_hosts
313
313
314
314
A lot of different attacks have been discovered relying on inconsistencies
315
315
in handling the ``Host `` header by various software (web servers, reverse
316
- proxies, web frameworks, etc.). Basically, everytime the framework is
316
+ proxies, web frameworks, etc.). Basically, every time the framework is
317
317
generating an absolute URL (when sending an email to reset a password for
318
318
instance), the host might have been manipulated by an attacker.
319
319
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 @@ -933,7 +933,7 @@ Suppose ``description`` equals ``I <3 this product``:
933
933
934
934
.. code-block :: twig
935
935
936
- <!-- outupt escaping is on automatically -->
936
+ <!-- output escaping is on automatically -->
937
937
{{ description }} <!-- I <3 this product -->
938
938
939
939
<!-- disable output escaping with the raw filter -->
You can’t perform that action at this time.
0 commit comments