Skip to content

Commit

Permalink
minor #3799 Fix list to not render in a block quote (WouterJ)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.3 branch.

Discussion
----------

Fix list to not render in a block quote

| Q   | A
| --- | ---
| Doc fix? | yes
| New docs? | no
| Applies to | all
| Fixed tickets | -

http://symfony.com/doc/current/contributing/code/conventions.html#method-names

Commits
-------

703eb88 Fixed list
  • Loading branch information
weaverryan committed Apr 21, 2014
2 parents 33b64e1 + 703eb88 commit 79322ff
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions contributing/code/conventions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ Method Names
When an object has a "main" many relation with related "things"
(objects, parameters, ...), the method names are normalized:

* ``get()``
* ``set()``
* ``has()``
* ``all()``
* ``replace()``
* ``remove()``
* ``clear()``
* ``isEmpty()``
* ``add()``
* ``register()``
* ``count()``
* ``keys()``
* ``get()``
* ``set()``
* ``has()``
* ``all()``
* ``replace()``
* ``remove()``
* ``clear()``
* ``isEmpty()``
* ``add()``
* ``register()``
* ``count()``
* ``keys()``

The usage of these methods are only allowed when it is clear that there
is a main relation:
Expand Down

0 comments on commit 79322ff

Please sign in to comment.