8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c6414 commit c63c826Copy full SHA for c63c826
cookbook/bundles/configuration.rst
@@ -75,7 +75,7 @@ bundle configuration would look like:
75
acme_social:
76
twitter:
77
client_id: 123
78
- client_secret: $secret
+ client_secret: your_secret
79
80
.. code-block:: xml
81
@@ -88,7 +88,7 @@ bundle configuration would look like:
88
http://symfony.com/schema/dic/services/services-1.0.xsd">
89
90
<acme-social:config>
91
- <twitter client-id="123" client-secret="$secret" />
+ <twitter client-id="123" client-secret="your_secret" />
92
</acme-social:config>
93
94
<!-- ... -->
@@ -99,7 +99,7 @@ bundle configuration would look like:
99
// app/config/config.php
100
$container->loadFromExtension('acme_social', array(
101
'client_id' => 123,
102
- 'client_secret' => '$secret',
+ 'client_secret' => 'your_secret',
103
));
104
105
.. seealso::
0 commit comments