Skip to content

Commit 282602e

Browse files
committed
Merge branch '2.7' into 2.8
2 parents 5726c9b + 7b8b8aa commit 282602e

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

book/service_container.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@ which you can access inside a standard controller as follows::
994994

995995
In Symfony, you'll constantly use services provided by the Symfony core or
996996
other third-party bundles to perform tasks such as rendering templates (``templating``),
997-
sending emails (``mailer``), or accessing information on the request (``request``).
997+
sending emails (``mailer``), or accessing information on the request through the request stack (``request_stack``).
998998

999999
You can take this a step further by using these services inside services that
10001000
you've created for your application. Beginning by modifying the ``NewsletterManager``

components/security/authorization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ on a "remember-me" cookie, or even authenticated anonymously?
133133
// any object
134134
$object = ...;
135135
136-
$vote = $authenticatedVoter->vote($token, $object, array('IS_AUTHENTICATED_FULLY');
136+
$vote = $authenticatedVoter->vote($token, $object, array('IS_AUTHENTICATED_FULLY'));
137137
138138
RoleVoter
139139
~~~~~~~~~

cookbook/assetic/php.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ directory and execute the following commands:
3333
.. code-block:: bash
3434
3535
$ composer require leafo/scssphp
36-
$ composer require patchwork/jsqueeze:"~1.0"
36+
$ composer require patchwork/jsqueeze
3737
38-
It's very important to maintain the ``~1.0`` version constraint for the ``jsqueeze``
39-
dependency because the most recent stable version is not compatible with Assetic.
4038
4139
Organizing your Web Asset Files
4240
-------------------------------

cookbook/bundles/configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ For the configuration example in the previous section, the array passed to your
139139
array(
140140
'twitter' => array(
141141
'client_id' => 123,
142-
'client_secret' => '$secret',
142+
'client_secret' => 'your_secret',
143143
),
144144
),
145145
)
@@ -155,7 +155,7 @@ beneath it, the incoming array might look like this::
155155
array(
156156
'twitter' => array(
157157
'client_id' => 123,
158-
'client_secret' => '$secret',
158+
'client_secret' => 'your_secret',
159159
),
160160
),
161161
// values from config_dev.yml

cookbook/workflow/homestead.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ quickly.
1111
.. tip::
1212

1313
Due to the amount of filesystem operations in Symfony (e.g. updating cache
14-
files and writing to log files), Symfony can slow down signifcantly. To
14+
files and writing to log files), Symfony can slow down significantly. To
1515
improve the speed, consider :ref:`overriding the cache and log directories <override-cache-dir>`
1616
to a location outside the NFS share (for instance, by using
1717
:phpfunction:`sys_get_temp_dir`). You can read `this blog post`_ for more

images/request-flow.png

-5.13 KB
Loading

0 commit comments

Comments
 (0)