@@ -175,9 +175,6 @@ Sort the result by name or by type (directories first, then files)::
175175 as its argument to use PHP's `natural sort order `_ algorithm instead (e.g.
176176 ``file1.txt ``, ``file2.txt ``, ``file10.txt ``).
177177
178- ..versionadded ::4.2
179- The option to use the natural sort order was introduced in Symfony 4.2.
180-
181178Sort the files and directories by the last accessed, changed or modified time::
182179
183180 $finder->sortByAccessedTime();
@@ -197,9 +194,6 @@ You can reverse any sorting by using the ``reverseSorting()`` method::
197194 // results will be sorted "Z to A" instead of the default "A to Z"
198195 $finder->sortByName()->reverseSorting();
199196
200- ..versionadded ::4.2
201- The ``reverseSorting() `` method was introduced in Symfony 4.2.
202-
203197..note ::
204198
205199 Notice that the ``sort* `` methods need to get all matching elements to do
@@ -236,10 +230,6 @@ Multiple filenames can be excluded by chaining calls or passing an array::
236230 // same as above
237231 $finder->files()->notName(array('*.rb', '*.py'));
238232
239- ..versionadded ::4.2
240- Support for passing arrays to ``name() `` and ``notName() `` was introduced
241- in Symfony 4.2
242-
243233File Contents
244234~~~~~~~~~~~~~
245235
@@ -282,9 +272,6 @@ Multiple paths can be defined by chaining calls or passing an array::
282272 // same as above
283273 $finder->path(array('data', 'foo/bar'));
284274
285- ..versionadded ::4.2
286- Support for passing arrays to ``path() `` was introduced in Symfony 4.2
287-
288275Internally, strings are converted into regular expressions by escaping slashes
289276and adding delimiters:
290277
@@ -323,9 +310,6 @@ Restrict by a size range by chaining calls or passing an array::
323310 // same as above
324311 $finder->files()->size(array('>= 1K', '<= 2K'));
325312
326- ..versionadded ::4.2
327- Support for passing arrays to ``size() `` was introduced in Symfony 4.2
328-
329313The comparison operator can be any of the following: ``> ``, ``>= ``, ``< ``, ``<= ``,
330314``== ``, ``!= ``.
331315
@@ -348,9 +332,6 @@ Restrict by a date range by chaining calls or passing an array::
348332 // same as above
349333 $finder->date(array('>= 2018-01-01', '<= 2018-12-31'));
350334
351- ..versionadded ::4.2
352- Support for passing arrays to ``date() `` was introduced in Symfony 4.2
353-
354335The comparison operator can be any of the following: ``> ``, ``>= ``, ``< ``, ``<= ``,
355336``== ``. You can also use ``since `` or ``after `` as an alias for ``> ``, and
356337``until `` or ``before `` as an alias for ``< ``.
@@ -373,9 +354,6 @@ Restrict by a depth range by chaining calls or passing an array::
373354 // same as above
374355 $finder->depth(array('> 2', '< 5'));
375356
376- ..versionadded ::4.2
377- Support for passing arrays to ``depth() `` was introduced in Symfony 4.2
378-
379357Custom Filtering
380358~~~~~~~~~~~~~~~~
381359