Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f7950ab

Browse filesBrowse files
OskarStarkwouterj
authored andcommitted
fixed wrong secret string in array examples
1 parent b2df969 commit f7950ab
Copy full SHA for f7950ab

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎cookbook/bundles/configuration.rst

Copy file name to clipboardExpand all lines: cookbook/bundles/configuration.rst
+2-2Lines 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

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.