Skip to content

Commit

Permalink
was added -> was introduced
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterj committed Mar 24, 2014
1 parent b0e07b4 commit 8187776
Show file tree
Hide file tree
Showing 25 changed files with 32 additions and 32 deletions.
4 changes: 2 additions & 2 deletions book/controller.rst
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ itself.
via the ``container`` property.

.. versionadded:: 2.4
The ``ContainerAwareTrait`` is new in Symfony 2.4.
The ``ContainerAwareTrait`` was introduced in Symfony 2.4.

.. note::

Expand Down Expand Up @@ -766,7 +766,7 @@ headers and content that's sent back to the client::
$response->headers->set('Content-Type', 'application/json');

.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

.. tip::

Expand Down
2 changes: 1 addition & 1 deletion book/from_flat_php_to_symfony2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ the HTTP response being returned. Use them to improve the blog:
$response->send();

.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

The controllers are now responsible for returning a ``Response`` object.
To make this easier, you can add a new ``render_template()`` function, which,
Expand Down
2 changes: 1 addition & 1 deletion book/http_cache.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ Here is how you can configure the Symfony2 reverse proxy to support the
}

.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

.. caution::

Expand Down
2 changes: 1 addition & 1 deletion book/http_fundamentals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ interface to construct the response that needs to be returned to the client::
$response->send();

.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

If Symfony offered nothing else, you would already have a toolkit for easily
accessing request information and an object-oriented interface for creating
Expand Down
2 changes: 1 addition & 1 deletion book/internals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ and set a new ``Exception`` object, or do nothing::
);

.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

.. seealso::

Expand Down
2 changes: 1 addition & 1 deletion book/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ document::
$this->assertTrue($client->getResponse()->isRedirect());

.. versionadded:: 2.4
Support for HTTP status code constants was added with Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

.. index::
single: Tests; Client
Expand Down
2 changes: 1 addition & 1 deletion components/console/helpers/progresshelper.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Progress Helper
The ``setCurrent`` method was added in Symfony 2.3.

.. versionadded:: 2.4
The ``clear`` method was added in Symfony 2.4.
The ``clear`` method was introduced in Symfony 2.4.

When executing longer-running commands, it may be helpful to show progress
information, which updates as your command runs:
Expand Down
2 changes: 1 addition & 1 deletion components/console/helpers/tablehelper.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Customize Table Layout using Named Layouts
------------------------------------------

.. versionadded:: 2.4
The ``TableHelper::LAYOUT_COMPACT`` layout was added in Symfony 2.4.
The ``TableHelper::LAYOUT_COMPACT`` layout was introduced in Symfony 2.4.

The Table helper ships with three preconfigured table layouts:

Expand Down
4 changes: 2 additions & 2 deletions components/debug/class_loader.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Debugging a Class Loader
========================

.. versionadded:: 2.4
The ``DebugClassLoader`` of the Debug component is new in Symfony 2.4.
Previously, it was located in the Class Loader component.
The ``DebugClassLoader`` of the Debug component was introduced in Symfony 2.4.
Previously, it was located in the ClassLoader component.

The :class:`Symfony\\Component\\Debug\\DebugClassLoader` attempts to
throw more helpful exceptions when a class isn't found by the registered
Expand Down
2 changes: 1 addition & 1 deletion components/dom_crawler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ Selecting Invalid Choice Values

.. versionadded:: 2.4
The :method:`Symfony\\Component\\DomCrawler\\Form::disableValidation`
method was added in Symfony 2.4.
method was introduced in Symfony 2.4.

By default, choice fields (select, radio) have internal validation activated
to prevent you from setting invalid values. If you want to be able to set
Expand Down
2 changes: 1 addition & 1 deletion components/event_dispatcher/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ EventDispatcher aware Events and Listeners
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. versionadded:: 2.4
Since Symfony 2.4 the current event name and the ``EventDispatcher``
Since Symfony 2.4, the current event name and the ``EventDispatcher``
itself are passed to the listeners as additional arguments.

The ``EventDispatcher`` always passes the dispatched event, the event's name
Expand Down
4 changes: 2 additions & 2 deletions components/filesystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ endpoint for filesystem operations::
}

.. versionadded:: 2.4
The ``IOExceptionInterface`` and its ``getPath`` method are new in Symfony
2.4. Prior to 2.4, you would catch the ``IOException`` class.
The ``IOExceptionInterface`` and its ``getPath`` method were introduced in
Symfony 2.4. Prior to 2.4, you would catch the ``IOException`` class.

.. note::

Expand Down
6 changes: 3 additions & 3 deletions components/http_foundation/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ by using the following methods:
returns the list of accepted charsets ordered by descending quality;

.. versionadded:: 2.4
The ``getEncodings()`` method was added in Symfony 2.4.
The ``getEncodings()`` method was introduced in Symfony 2.4.

.. versionadded:: 2.2
The :class:`Symfony\\Component\\HttpFoundation\\AcceptHeader` class is new in Symfony 2.2.
Expand Down Expand Up @@ -289,7 +289,7 @@ Overriding the Request

.. versionadded:: 2.4
The :method:`Symfony\\Component\\HttpFoundation\\Request::setFactory`
method was added in Symfony 2.4.
method was introduced in Symfony 2.4.

The ``Request`` class should not be overridden as it is a data object that
represents an HTTP message. But when moving from a legacy system, adding
Expand Down Expand Up @@ -339,7 +339,7 @@ code, and an array of HTTP headers::
);

.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

These information can also be manipulated after the Response object creation::

Expand Down
2 changes: 1 addition & 1 deletion components/process.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ and :method:`Symfony\\Component\\Process\\Process::getIncrementalErrorOutput`
methods returns the new outputs since the last call.

.. versionadded:: 2.4
The ``clearOutput()`` and ``clearErrorOutput()`` methods were added in Symfony 2.4.
The ``clearOutput()`` and ``clearErrorOutput()`` methods were introduced in Symfony 2.4.

The :method:`Symfony\\Component\\Process\\Process::clearOutput` method clears
the contents of the output and
Expand Down
4 changes: 2 additions & 2 deletions cookbook/console/console_command.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ instead of

.. versionadded:: 2.4
Since Symfony 2.4, the ``CommandTester`` automatically detects the name of
the command to execute. Thus, you don't need to pass it via the ``command``
key anymore.
the command to execute. Prior to Symfony 2.4, you need to pass it via the
``command`` key.

.. note::

Expand Down
2 changes: 1 addition & 1 deletion cookbook/security/api_key_authentication.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The API Key Authenticator
-------------------------

.. versionadded:: 2.4
The ``SimplePreAuthenticatorInterface`` interface was added in Symfony 2.4.
The ``SimplePreAuthenticatorInterface`` interface was introduced in Symfony 2.4.

Authenticating a user based on the Request information should be done via a
pre-authentication mechanism. The :class:`Symfony\\Component\\Security\\Core\\Authentication\\SimplePreAuthenticatorInterface`
Expand Down
2 changes: 1 addition & 1 deletion cookbook/security/custom_authentication_provider.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ set an authenticated token in the security context if successful.
}
.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

This listener checks the request for the expected ``X-WSSE`` header, matches
the value returned for the expected WSSE information, creates a token using
Expand Down
2 changes: 1 addition & 1 deletion cookbook/security/custom_password_authenticator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The Password Authenticator
--------------------------

.. versionadded:: 2.4
The ``SimpleFormAuthenticatorInterface`` interface was added in Symfony 2.4.
The ``SimpleFormAuthenticatorInterface`` interface was introduced in Symfony 2.4.

First, create a new class that implements
:class:`Symfony\\Component\\Security\\Core\\Authentication\\SimpleFormAuthenticatorInterface`.
Expand Down
2 changes: 1 addition & 1 deletion cookbook/service_container/event_listener.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ event is just one of the core kernel events::
}

.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

.. tip::

Expand Down
2 changes: 1 addition & 1 deletion cookbook/session/limit_metadata_writes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Limit Session Metadata Writes
=============================

.. versionadded:: 2.4
The ability to limit session metadata writes was added in Symfony 2.4.
The ability to limit session metadata writes was introduced in Symfony 2.4.

The default behavior of PHP session is to persist the session regardless of
whether the session data has changed or not. In Symfony, each time the session
Expand Down
2 changes: 1 addition & 1 deletion cookbook/testing/insulating_clients.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ chat for instance), create several clients::
$this->assertRegExp('/Hello/', $sally->getResponse()->getContent());

.. versionadded:: 2.4
Support for HTTP status code constants was added in Symfony 2.4.
Support for HTTP status code constants was introduced in Symfony 2.4.

This works except when your code maintains a global state or if it depends on
a third-party library that has some kind of global state. In such a case, you
Expand Down
2 changes: 1 addition & 1 deletion reference/constraints/Image.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Additionally it has options so you can validate against the width and height
of the image.

.. versionadded:: 2.4
As of Symfony 2.4 you can also validate against the image aspect ratio
As of Symfony 2.4, you can also validate against the image aspect ratio
(defined as ``width / height``) and selectively allow square, landscape
and portrait image orientations.

Expand Down
4 changes: 2 additions & 2 deletions reference/dic_tags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ console.command
---------------
.. versionadded:: 2.4
Support for registering commands in the service container was added in
version 2.4.
Support for registering commands in the service container was introduced in
Symfony 2.4.
**Purpose**: Add a command to the application
Expand Down
2 changes: 1 addition & 1 deletion reference/forms/twig_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ object:
The ``method`` and ``action`` variables were introduced in Symfony 2.3.

.. versionadded:: 2.4
The ``submitted`` variable was added in Symfony 2.4.
The ``submitted`` variable was introduced in Symfony 2.4.

+------------------------+-------------------------------------------------------------------------------------+
| Variable | Usage |
Expand Down
2 changes: 1 addition & 1 deletion reference/twig_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Tags
----

.. versionadded:: 2.4
The stopwatch tag was added in Symfony 2.4.
The stopwatch tag was introduced in Symfony 2.4.

+---------------------------------------------------+--------------------------------------------------------------------+
| Tag Syntax | Usage |
Expand Down

0 comments on commit 8187776

Please sign in to comment.