File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ some environment variable that stores the name of the IDE/editor:
170
170
# config/packages/framework.yaml
171
171
framework :
172
172
# the env var stores the IDE/editor name (e.g. 'phpstorm', 'vscode', etc.)
173
- ide : ' %env(resolve:CODE_EDITOR )%'
173
+ ide : ' %env(resolve:SYMFONY_IDE )%'
174
174
175
175
.. code-block :: xml
176
176
@@ -184,7 +184,7 @@ some environment variable that stores the name of the IDE/editor:
184
184
http://symfony.com/schema/dic/symfony https://symfony.com/schema/dic/symfony/symfony-1.0.xsd" >
185
185
186
186
<!-- the env var stores the IDE/editor name (e.g. 'phpstorm', 'vscode', etc.) -->
187
- <framework : config ide =" %env(resolve:CODE_EDITOR )%" />
187
+ <framework : config ide =" %env(resolve:SYMFONY_IDE )%" />
188
188
</container >
189
189
190
190
.. code-block :: php
@@ -194,7 +194,7 @@ some environment variable that stores the name of the IDE/editor:
194
194
195
195
return static function (FrameworkConfig $framework) {
196
196
// the env var stores the IDE/editor name (e.g. 'phpstorm', 'vscode', etc.)
197
- $framework->ide('%env(resolve:CODE_EDITOR )%');
197
+ $framework->ide('%env(resolve:SYMFONY_IDE )%');
198
198
};
199
199
200
200
.. versionadded :: 6.1
You can’t perform that action at this time.
0 commit comments