Browse Source

fix(wizard): Remove duplicate DSN instructions (#55681)

Michi Hoffmann 1 year ago
parent
commit
f2153b51f0
1 changed files with 1 additions and 11 deletions
  1. 1 11
      static/app/gettingStartedDocs/php/symfony.tsx

+ 1 - 11
static/app/gettingStartedDocs/php/symfony.tsx

@@ -69,18 +69,8 @@ sensio_framework_extra:
     configurations: [
       {
         description: (
-          <p>
-            {tct('Add your DSN to [code:config/packages/sentry.yaml]:', {code: <code />})}
-          </p>
+          <p>{tct('Add your DSN to your [code:.env] file:', {code: <code />})}</p>
         ),
-        language: 'php',
-        code: `
-sentry:
-  dsn: "%env(${dsn})%"
-        `,
-      },
-      {
-        description: <p>{tct('And in your [code:.env] file:', {code: <code />})}</p>,
         language: 'plain',
         code: `
 ###> sentry/sentry-symfony ###