Skip to content

Commit 60cd462

Browse files
committed
Merge branch '2.3' into 2.7
2 parents a99cc60 + c63c826 commit 60cd462

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: cookbook/bundles/configuration.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ bundle configuration would look like:
7575
acme_social:
7676
twitter:
7777
client_id: 123
78-
client_secret: $ecret
78+
client_secret: your_secret
7979
8080
.. code-block:: xml
8181
@@ -88,7 +88,7 @@ bundle configuration would look like:
8888
http://symfony.com/schema/dic/services/services-1.0.xsd">
8989
9090
<acme-social:config>
91-
<twitter client-id="123" client-secret="$ecret" />
91+
<twitter client-id="123" client-secret="your_secret" />
9292
</acme-social:config>
9393
9494
<!-- ... -->
@@ -99,7 +99,7 @@ bundle configuration would look like:
9999
// app/config/config.php
100100
$container->loadFromExtension('acme_social', array(
101101
'client_id' => 123,
102-
'client_secret' => '$ecret',
102+
'client_secret' => 'your_secret',
103103
));
104104
105105
.. seealso::
@@ -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' => '$ecret',
142+
'client_secret' => '$secret',
143143
),
144144
),
145145
)

Diff for: cookbook/controller/error_pages.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ In that case, you might want to override one or both of the ``showAction()`` and
289289
# app/config/services.yml
290290
services:
291291
app.exception_controller:
292-
class: AppBundle\Controller\CustomExceptionController
293-
arguments: ['@twig', '%kernel.debug%']
292+
class: AppBundle\Controller\CustomExceptionController
293+
arguments: ['@twig', '%kernel.debug%']
294294
295295
.. code-block:: xml
296296

0 commit comments

Comments
 (0)