Skip to content

Commit fbc158a

Browse files
committed
minor #10823 added blank line after .. versionadded:: directive (OskarStark)
This PR was merged into the 3.4 branch. Discussion ---------- added blank line after .. versionadded:: directive Commits ------- ec17bff added blank line after .. versionadded:: directive
2 parents 17c488a + ec17bff commit fbc158a

File tree

95 files changed

+152
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+152
-0
lines changed

best_practices/configuration.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ through environment variables:
209209
password: "%env(DB_PASSWORD)%"
210210
211211
.. versionadded:: 3.2
212+
212213
Support for runtime environment variables via the ``%env(...)%`` syntax
213214
was added in Symfony 3.2. Prior to version 3.2, you needed to use the
214215
:doc:`special SYMFONY__ variables </configuration/external_parameters>`.

bundles/extension.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ Adding Classes to Compile
130130
-------------------------
131131

132132
.. versionadded:: 3.3
133+
133134
This technique is discouraged and the ``addClassesToCompile()`` method was
134135
deprecated in Symfony 3.3 because modern PHP versions make it unnecessary.
135136

@@ -138,6 +139,7 @@ the contents of the PHP classes that are used in every request. This reduces the
138139
I/O operations and increases the application performance.
139140

140141
.. versionadded:: 3.2
142+
141143
The ``addAnnotatedClassesToCompile()`` method was added in Symfony 3.2.
142144

143145
Your bundles can also add their own classes into this file thanks to the
@@ -174,6 +176,7 @@ class names::
174176
included in the list of classes to compile.
175177

176178
.. versionadded:: 3.2
179+
177180
The option to add classes to compile using patterns was introduced in Symfony 3.2.
178181

179182
The classes to compile can also be added using file path patterns::

components/cache.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ The Cache Component
1515
from/to `Doctrine Cache`_.
1616

1717
.. versionadded:: 3.3
18+
1819
The PSR-16 "Simple Cache" implementation was introduced in Symfony 3.3.
1920

2021
Installation

components/cache/adapters/memcached_adapter.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ helper method allows creating and configuring a `Memcached`_ class instance usin
6969
));
7070

7171
.. versionadded:: 3.4
72+
7273
The feature to pass configuration options in the memcached DSN was
7374
introduced in Symfony 3.4.
7475

components/cache/cache_invalidation.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Using Cache Tags
2121
----------------
2222

2323
.. versionadded:: 3.2
24+
2425
Tags-based invalidation was introduced in Symfony 3.2.
2526

2627
To benefit from tags-based invalidation, you need to attach the proper tags to

components/cache/cache_pools.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ when all items are successfully deleted)::
141141
$ php bin/console cache:pool:clear cache.validation cache.app
142142
143143
.. versionadded:: 3.4
144+
144145
Starting from Symfony 3.4, the ``cache:clear`` command no longer clears
145146
the cache pools, so you must use the ``cache:pool:clear`` command to
146147
delete them.

components/config/definition.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ Or you may define a prototype for each node inside an array node::
188188
;
189189

190190
.. versionadded:: 3.3
191+
191192
The ``arrayPrototype()`` method (and the related ``booleanPrototype()``
192193
``integerPrototype()``, ``floatPrototype()``, ``scalarPrototype()`` and
193194
``enumPrototype()``) was introduced in Symfony 3.3. In previous versions,
@@ -199,6 +200,7 @@ above, it is possible to have multiple connection arrays (containing a ``driver`
199200
``host``, etc.).
200201

201202
.. versionadded:: 3.3
203+
202204
The ``castToArray()`` helper was added in Symfony 3.3.
203205

204206
Sometimes, to improve the user experience of your application or bundle, you may

components/console/events.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ The ``ConsoleEvents::EXCEPTION`` Event
8787
--------------------------------------
8888

8989
.. versionadded:: 3.3
90+
9091
The ``ConsoleEvents::EXCEPTION`` event was deprecated in Symfony 3.3. Use
9192
the ``ConsoleEvents::ERROR`` event instead.
9293

components/console/helpers/questionhelper.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ convenient for passwords::
230230
}
231231

232232
.. versionadded:: 3.3
233+
233234
The ``QuestionHelper::disableStty()`` method was introduced in Symfony 3.3.
234235

235236
Normalizing the Answer
@@ -369,6 +370,7 @@ from the command line, you need to set the inputs that the command expects::
369370
}
370371

371372
.. versionadded:: 3.2
373+
372374
The ``CommandTester::setInputs()`` method was introduced in Symfony 3.2.
373375

374376
By calling :method:`Symfony\\Component\\Console\\Tester\\CommandTester::setInputs`,

components/console/logger.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ Errors
107107
------
108108

109109
.. versionadded:: 3.2
110+
110111
The ``hasErrored()`` method was introduced in Symfony 3.2.
111112

112113
The Console logger includes a ``hasErrored()`` method which returns ``true`` as

0 commit comments

Comments
 (0)