mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-05 15:07:11 +00:00
Update coding standards
This commit is contained in:
committed by
Fabien Potencier
parent
14fc89ebea
commit
07a4ed17d2
@@ -88,17 +88,17 @@ standards:
|
||||
[1, 2, 3]
|
||||
{'name': 'Fabien'}
|
||||
|
||||
* Do not put any spaces before and after ``=`` in macro argument declarations:
|
||||
* Put exactly one space before and after ``=`` in macro argument declarations:
|
||||
|
||||
.. code-block:: twig
|
||||
|
||||
{% macro html_input(class="input") %}
|
||||
{% macro html_input(class = "input") %}
|
||||
|
||||
* Put exactly one space after the ``:`` sign in macro argument declarations:
|
||||
* Put exactly one space after the ``:`` sign when using named arguments:
|
||||
|
||||
.. code-block:: twig
|
||||
|
||||
{% macro html_input(class: "input") %}
|
||||
{{ html_input(class: "input") }}
|
||||
|
||||
* Use snake case for all variable names (provided by the application and
|
||||
created in templates), function/filter/test names, argument names and named
|
||||
|
||||
Reference in New Issue
Block a user