Commit 5b3e31bf authored by Fabien Potencier's avatar Fabien Potencier

fixed markup

parent 99ddee03
...@@ -8,7 +8,7 @@ Changelog ...@@ -8,7 +8,7 @@ Changelog
one. one.
* Made dispatcher proxy methods ``on``, ``before``, ``after`` and ``error`` * Made dispatcher proxy methods ``on``, ``before``, ``after`` and ``error``
lazy, so that they will not instantiate the dispatcher early. lazy, so that they will not instantiate the dispatcher early.
* Dropped support for 2.1 and 2.2 versions of symfony. * Dropped support for 2.1 and 2.2 versions of Symfony.
1.0.1 (2013-07-04) 1.0.1 (2013-07-04)
------------------ ------------------
......
...@@ -16,9 +16,9 @@ user to register them. ...@@ -16,9 +16,9 @@ user to register them.
Registering the ErrorHandler Registering the ErrorHandler
---------------------------- ----------------------------
Fortunately, the `Symfony/Debug` package has an `ErrorHandler` that solves this Fortunately, the ``Symfony/Debug`` package has an ``ErrorHandler`` class that
issue. It converts all errors to exceptions, and exceptions can be caught by solves this issue. It converts all errors to exceptions, and exceptions can be
Silex. caught by Silex.
You register it by calling the static ``register`` method:: You register it by calling the static ``register`` method::
......
...@@ -78,9 +78,9 @@ use it by making your test extend it:: ...@@ -78,9 +78,9 @@ use it by making your test extend it::
.. note:: .. note::
If you want to use the Symfony2 `WebTestCase` you will need to explicitly If you want to use the Symfony2 ``WebTestCase`` class you will need to
install its dependencies for your project. Add the following to your explicitly install its dependencies for your project. Add the following to
`composer.json` file: your ``composer.json`` file:
.. code-block:: json .. code-block:: json
......
...@@ -23,7 +23,8 @@ trait SwiftmailerTrait ...@@ -23,7 +23,8 @@ trait SwiftmailerTrait
* *
* @param \Swift_Message $message A \Swift_Message instance * @param \Swift_Message $message A \Swift_Message instance
* @param array $failedRecipients An array of failures by-reference * @param array $failedRecipients An array of failures by-reference
* @return int *
* @return int The number of sent messages
*/ */
public function mail(\Swift_Message $message, &$failedRecipients = null) public function mail(\Swift_Message $message, &$failedRecipients = null)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment