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 a2ce937

Browse filesBrowse files
committed
Merge branch '2.3' into 2.4
2 parents 2aea99d + 329e254 commit a2ce937
Copy full SHA for a2ce937

File tree

Expand file treeCollapse file tree

2 files changed

+68
-5
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+68
-5
lines changed

‎book/testing.rst

Copy file name to clipboardExpand all lines: book/testing.rst
+46Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,52 @@ To get the Profiler for the last request, do the following::
487487
For specific details on using the profiler inside a test, see the
488488
:doc:`/cookbook/testing/profiling` cookbook entry.
489489

490+
To avoid collecting data in each test you can set the ``collect`` parameter
491+
in the configuration:
492+
493+
.. configuration-block::
494+
495+
.. code-block:: yaml
496+
497+
# app/config/config_test.yml
498+
499+
# ...
500+
framework:
501+
profiler:
502+
enabled: true
503+
collect: false
504+
505+
.. code-block:: xml
506+
507+
<!-- app/config/config.xml -->
508+
<?xml version="1.0" encoding="UTF-8" ?>
509+
<container xmlns="http://symfony.com/schema/dic/services"
510+
xmlns:framework="http://symfony.com/schema/dic/symfony"
511+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
512+
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd
513+
http://symfony.com/schema/dic/symfony http://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
514+
515+
<!-- ... -->
516+
517+
<framework:config>
518+
<framework:profiler enabled="true" collect="false" />
519+
</framework:config>
520+
</container>
521+
522+
.. code-block:: php
523+
524+
// app/config/config.php
525+
526+
// ...
527+
$container->loadFromExtension('framework', array(
528+
'profiler' => array(
529+
'enabled' => true,
530+
'collect' => false,
531+
),
532+
));
533+
534+
In this way only tests that call ``enableProfiler()`` will collect data.
535+
490536
Redirecting
491537
~~~~~~~~~~~
492538

‎contributing/code/core_team.rst

Copy file name to clipboardExpand all lines: contributing/code/core_team.rst
+22-5Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,15 @@ Active Core Members
5252
Process_ component;
5353

5454
* **Nicolas Grekas** (:merger:`nicolas-grekas`) can merge into the Debug_
55-
component.
55+
component;
56+
57+
* **Christophe Coevoet** (:merger:`stof`) can merge into the BrowserKit_,
58+
Config_, Console_, DependencyInjection_, DomCrawler_, EventDispatcher_,
59+
HttpFoundation_, HttpKernel_, Serializer_, Stopwatch_, DoctrineBridge_,
60+
MonologBridge_, and TwigBridge_ components.
5661

5762
* **Deciders**:
5863

59-
* **Christophe Coevoet** (:decider:`stof`);
6064
* **Jakub Zalas** (:decider:`jakzal`);
6165
* **Jordi Boggiano** (:decider:`seldaek`);
6266
* **Lukas Kahwe Smith** (:decider:`lsmith77`).
@@ -137,13 +141,26 @@ discretion of the **Project Leader**.
137141
.. [1] Minor changes comprise typos, DocBlock fixes, code standards
138142
violations, and minor CSS, JavaScript and HTML modifications.
139143
144+
.. _BrowserKit: https://github.com/symfony/BrowserKit
145+
.. _Config: https://github.com/symfony/Config
146+
.. _Console: https://github.com/symfony/Console
147+
.. _Debug: https://github.com/symfony/Debug
148+
.. _DependencyInjection: https://github.com/symfony/DependencyInjection
149+
.. _DoctrineBridge: https://github.com/symfony/DoctrineBridge
150+
.. _EventDispatcher: https://github.com/symfony/EventDispatcher
151+
.. _DomCrawler: https://github.com/symfony/DomCrawler
140152
.. _Form: https://github.com/symfony/Form
141-
.. _Validator: https://github.com/symfony/Validator
153+
.. _HttpFoundation: https://github.com/symfony/HttpFoundation
154+
.. _HttpKernel: https://github.com/symfony/HttpKernel
142155
.. _Icu: https://github.com/symfony/Icu
143156
.. _Intl: https://github.com/symfony/Intl
144157
.. _Locale: https://github.com/symfony/Locale
158+
.. _MonologBridge: https://github.com/symfony/MonologBridge
145159
.. _OptionsResolver: https://github.com/symfony/OptionsResolver
160+
.. _Process: https://github.com/symfony/Process
146161
.. _PropertyAccess: https://github.com/symfony/PropertyAccess
147162
.. _Routing: https://github.com/symfony/Routing
148-
.. _Process: https://github.com/symfony/Process
149-
.. _Debug: https://github.com/symfony/Debug
163+
.. _Serializer: https://github.com/symfony/Serializer
164+
.. _Stopwatch: https://github.com/symfony/Stopwatch
165+
.. _TwigBridge: https://github.com/symfony/TwigBridge
166+
.. _Validator: https://github.com/symfony/Validator

0 commit comments

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