File tree Expand file tree Collapse file tree 3 files changed +4
-23
lines changed
Filter options
reference/forms/types/options Expand file tree Collapse file tree 3 files changed +4
-23
lines changed
Original file line number Diff line number Diff line change @@ -14,9 +14,8 @@ Automatically Registering Commands
14
14
To make the console commands available automatically with Symfony2, create a
15
15
``Command `` directory inside your bundle and create a PHP file suffixed with
16
16
``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::
20
19
21
20
// src/Acme/DemoBundle/Command/GreetCommand.php
22
21
namespace Acme\DemoBundle\Command;
Original file line number Diff line number Diff line change 4
4
Deploying to Microsoft Azure Website Cloud
5
5
==========================================
6
6
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
-
25
7
Simply put, this cookbook illustrates how to deploy a very simple **Symfony2
26
8
Standard Edition ** web application. You can easily download a copy of the
27
9
Symfony Standard Edition on the `downloads `_ page. Also, this cookbook assumes
Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ used to decide whether to process the form submission in the
17
17
* DELETE
18
18
* PATCH
19
19
20
- .. note:
20
+ .. note::
21
21
22
22
When the method is PUT, PATCH, or DELETE, Symfony will automatically
23
23
render a ``_method`` hidden field in your form. This is used to "fake"
24
24
these HTTP methods, as they' re not supported on standard browsers. For
25
25
more information, see : doc:`/ cookbook/ routing/ method_parameters`.
26
26
27
- .. note :
27
+ .. note::
28
28
29
29
The PATCH method allows submitting partial data. In other words, if the
30
30
submitted form data is missing certain fields, those will be ignored
You can’t perform that action at this time.
0 commit comments