8000 minor #11276 Fixes escaping of IDE config and adds example for PhpSto… · symfony/symfony-docs@f52bf70 · GitHub
[go: up one dir, main page]

Skip to content

Commit f52bf70

Browse files
committed
minor #11276 Fixes escaping of IDE config and adds example for PhpStorm (greeflas)
This PR was squashed before being merged into the 4.2 branch (closes #11276). Discussion ---------- Fixes escaping of IDE config and adds example for PhpStorm Commits ------- 1fc1eef Fixes escaping of IDE config and adds example for PhpStorm
2 parents c0d04a1 + 1fc1eef commit f52bf70

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

reference/configuration/framework.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,8 +346,11 @@ need to escape the percent signs (``%``) by doubling them.
346346

347347
// /path/to/guest/.../file will be opened
348348
// as /path/to/host/.../file on the host
349-
// and /foo/.../file as /bar/.../file also
350-
'myide://%f:%l&/path/to/guest/>/path/to/host/&/foo/>/bar/&...'
349+
// and /var/www/app/ as /projects/my_project/ also
350+
'myide://%%f:%%l&/path/to/guest/>/path/to/host/&/var/www/app/>/projects/my_project/&...'
351+
352+
// example for PhpStorm
353+
'phpstorm://open?file=%%f&line=%%l&/var/www/app/>/projects/my_project/'
351354

352355
.. _reference-framework-test:
353356

0 commit comments

Comments
 (0)
0