Skip to content

Removed some mentions to deprecated features #8791

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 30, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions components/cache/cache_pools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,4 @@ when all items are successfully deleted)::
# clears the "cache.validation" and "cache.app" pool
$ php bin/console cache:pool:clear cache.validation cache.app

.. versionadded:: 3.4
Starting from Symfony 3.4, the ``cache:clear`` command no longer clears
the cache pools, so you must use the ``cache:pool:clear`` command to
delete them.

.. _`Doctrine Cache`: https://github.com/doctrine/cache
4 changes: 2 additions & 2 deletions components/filesystem/lock_handler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ LockHandler

.. caution::

The ``LockHandler`` utility is deprecated since Symfony 3.4. Use the new
Symfony Lock component instead.
The ``LockHandler`` utility was removed in Symfony 4.0. Use the new Symfony
Lock component instead.
2 changes: 0 additions & 2 deletions form/action_method.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ to the ``form()`` or the ``form_start()`` helper functions:

<!-- templates/default/new.html.php -->
<?php echo $view['form']->start($form, array(
// The path() method was introduced in Symfony 2.8. Prior to 2.8,
// you had to use generate().
'action' => $view['router']->path('target_route'),
'method' => 'GET',
)) ?>
Expand Down
3 changes: 0 additions & 3 deletions reference/configuration/framework.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1860,9 +1860,6 @@ The cache clearer used to clear your PSR-6 cache.
prefix_seed
...........

.. versionadded:: 3.2
The ``prefix_seed`` option was introduced in Symfony 3.2.

**type**: ``string`` **default**: ``null``

If defined, this value is used as part of the "namespace" generated for the
Expand Down
1 change: 0 additions & 1 deletion reference/configuration/security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ Each part will be explained in the next section.

# by default, a session must exist before submitting an authentication request
# if false, then Request::hasPreviousSession is not called during authentication
# new in Symfony 2.3
require_previous_session: true

service: ~
Expand Down
8 changes: 0 additions & 8 deletions reference/forms/types/options/choice_value.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,3 @@ for each choice or ``null`` in some cases, which you need to handle:
'choice_value' => function (MyOptionEntity $entity = null) {
return $entity ? $entity->getId() : '';
},

.. caution::

In Symfony 2.7, there was a small backwards-compatibility break with how the
``value`` attribute of options is generated. This is not a problem unless you
rely on the option values in JavaScript. See `issue #14825`_ for details.

.. _`issue #14825`: https://github.com/symfony/symfony/pull/14825
5 changes: 2 additions & 3 deletions security/host_restriction.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
How to Restrict Firewalls to a Specific Host
============================================

As of Symfony 2.5, more possibilities to restrict firewalls have been added.
You can read everything about all the possibilities (including ``host``)
in ":doc:`/security/firewall_restriction`".
There are more possibilities to restrict firewalls. You can read everything
about all the possibilities (including ``host``) in ":doc:`/security/firewall_restriction`".