Skip to content

Commit c63c826

Browse files
committed
[#6337] Change value of client_secret option
1 parent 71c6414 commit c63c826

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cookbook/bundles/configuration.rst

Lines changed: 3 additions & 3 deletions
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: $secret
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="$secret" />
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' => '$secret',
102+
'client_secret' => 'your_secret',
103103
));
104104
105105
.. seealso::

0 commit comments

Comments
 (0)