Skip to content

Commit deb7835

Browse files
committed
Merge branch '2.4' into 2.5
2 parents 741ad05 + ec0f87b commit deb7835

File tree

3 files changed

+4
-23
lines changed

3 files changed

+4
-23
lines changed

cookbook/console/console_command.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ Automatically Registering Commands
1414
To make the console commands available automatically with Symfony2, create a
1515
``Command`` directory inside your bundle and create a PHP file suffixed with
1616
``Command.php`` for each command that you want to provide. For example, if you
17-
want to extend the AcmeDemoBundle (available in the Symfony Standard
18-
Edition) to greet you from the command line, create ``GreetCommand.php`` and
19-
add the following to it::
17+
want to extend the AcmeDemoBundle to greet you from the command line, create
18+
``GreetCommand.php`` and add the following to it::
2019

2120
// src/Acme/DemoBundle/Command/GreetCommand.php
2221
namespace Acme\DemoBundle\Command;

cookbook/deployment/azure-website.rst

-18
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,6 @@
44
Deploying to Microsoft Azure Website Cloud
55
==========================================
66

7-
SensioLabs and Microsoft announce their partnership during the upcoming PHP Tour
8-
in Lyon (France). This announcement covers several strategic aspects including
9-
the integration of Symfony into the Microsoft Azure Website Cloud platform
10-
destined to leverage all the devops aspects from Azure Websites to the Symfony2
11-
developers community.
12-
13-
The two companies will provide all the needed tutorials allowing both
14-
communities and companies to migrate their Symfony applications to the Microsoft
15-
Azure Cloud platform.
16-
17-
Additionally, Microsoft and SensioLabs are working on integrating Symfony into
18-
the Azure Website gallery in an effort to simplify the deployment of Symfony
19-
applications and provide a complete offer to satisfy various company's target
20-
markets.
21-
22-
Objectives
23-
----------
24-
257
Simply put, this cookbook illustrates how to deploy a very simple **Symfony2
268
Standard Edition** web application. You can easily download a copy of the
279
Symfony Standard Edition on the `downloads`_ page. Also, this cookbook assumes

reference/forms/types/options/method.rst.inc

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ used to decide whether to process the form submission in the
1717
* DELETE
1818
* PATCH
1919
20-
.. note:
20+
.. note::
2121
2222
When the method is PUT, PATCH, or DELETE, Symfony will automatically
2323
render a ``_method`` hidden field in your form. This is used to "fake"
2424
these HTTP methods, as they're not supported on standard browsers. For
2525
more information, see :doc:`/cookbook/routing/method_parameters`.
2626

27-
.. note:
27+
.. note::
2828

2929
The PATCH method allows submitting partial data. In other words, if the
3030
submitted form data is missing certain fields, those will be ignored

0 commit comments

Comments
 (0)