@@ -197,16 +197,16 @@ using the following keys:
197
197
The ``emacs `` and ``sublime `` editors were introduced in Symfony 2.3.14.
198
198
199
199
You can also specify a custom url string. If you do this, all percentage
200
- signs (``% ``) must be doubled to escape that character. For example, if you
201
- have installed ` PhpStormOpener `_ and use PHPstorm , you will do something like:
200
+ signs (``% ``) must be doubled to escape that character. For example, if you use
201
+ PHPstorm on the Mac OS platform , you will do something like:
202
202
203
203
.. configuration-block ::
204
204
205
205
.. code-block :: yaml
206
206
207
207
# app/config/config.yml
208
208
framework :
209
- ide : " pstorm ://%%f: %%l"
209
+ ide : " phpstorm ://open?file= %%f&line= %%l"
210
210
211
211
.. code-block :: xml
212
212
@@ -218,14 +218,14 @@ have installed `PhpStormOpener`_ and use PHPstorm, you will do something like:
218
218
xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd
219
219
http://symfony.com/schema/dic/symfony http://symfony.com/schema/dic/symfony/symfony-1.0.xsd" >
220
220
221
- <framework : config ide =" pstorm ://%%f: %%l" />
221
+ <framework : config ide =" phpstorm ://open?file= %%f& line= %%l" />
222
222
</container >
223
223
224
224
.. code-block :: php
225
225
226
226
// app/config/config.php
227
227
$container->loadFromExtension('framework', array(
228
- 'ide' => 'pstorm ://%%f: %%l',
228
+ 'ide' => 'phpstorm ://open?file= %%f&line= %%l',
229
229
));
230
230
231
231
Of course, since every developer uses a different IDE, it's better to set
@@ -1278,7 +1278,6 @@ Whether to enable the ``serializer`` service or not in the service container.
1278
1278
For more details, see :doc: `/cookbook/serializer `.
1279
1279
1280
1280
.. _`protocol-relative` : http://tools.ietf.org/html/rfc3986#section-4.2
1281
- .. _`PhpStormOpener` : https://github.com/pinepain/PhpStormOpener
1282
1281
.. _`HTTP Host header attacks` : http://www.skeletonscribe.net/2013/05/practical-http-host-header-attacks.html
1283
1282
.. _`Security Advisory Blog post` : http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2-3-3-released#cve-2013-4752-request-gethost-poisoning
1284
1283
.. _`Doctrine Cache` : http://docs.doctrine-project.org/projects/doctrine-common/en/latest/reference/caching.html
0 commit comments