Skip to content

Commit d5fc5ba

Browse files
committed
Fixed wrong syntaxes
1 parent fa881c1 commit d5fc5ba

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

contributing/code/standards.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ documents.
1515
Since a picture - or some code - is worth a thousand words, here's a short
1616
example containing most features described below:
1717

18-
.. code-block:: php
18+
.. code-block:: php+html
1919

2020
<?php
2121

@@ -82,17 +82,17 @@ Structure
8282

8383
* Add a single space after each comma delimiter;
8484

85-
* Add a single space around operators (`==`, `&&`, ...);
85+
* Add a single space around operators (``==``, ``&&``, ...);
8686

87-
* Add a blank line before `return` statements, unless the return is alone
88-
inside a statement-group (like an `if` statement);
87+
* Add a blank line before ``return`` statements, unless the return is alone
88+
inside a statement-group (like an ``if`` statement);
8989

9090
* Use braces to indicate control structure body regardless of the number of
9191
statements it contains;
9292

9393
* Define one class per file - this does not apply to private helper classes
9494
that are not intended to be instantiated from the outside and thus are not
95-
concerned by the PSR-0 standard;
95+
concerned by the `PSR-0`_ standard;
9696

9797
* Declare class properties before methods;
9898

@@ -108,9 +108,9 @@ Naming Conventions
108108

109109
* Use namespaces for all classes;
110110

111-
* Abstract classes are often prefixed with `Abstract`;
111+
* Abstract classes are often prefixed with ``Abstract``;
112112

113-
* Suffix interfaces with `Interface`;
113+
* Suffix interfaces with ``Interface``;
114114

115115
* Use alphanumeric characters and underscores for file names;
116116

@@ -122,9 +122,9 @@ Documentation
122122

123123
* Add PHPDoc blocks for all classes, methods, and functions;
124124

125-
* Omit the `@return` tag if the method does not return anything;
125+
* Omit the ``@return`` tag if the method does not return anything;
126126

127-
* The `@package` and `@subpackage` annotations are not used.
127+
* The ``@package`` and ``@subpackage`` annotations are not used.
128128

129129
License
130130
-------

0 commit comments

Comments
 (0)