@@ -2,17 +2,29 @@ <h2>Why is this an issue?</h2>
2
2
< p > Shared naming conventions allow teams to collaborate efficiently.</ p >
3
3
< p > This rule raises an issue when a function name does not match a provided regular expression.</ p >
4
4
< p > For example, with the default provided regular expression < code > ^[a-z][a-zA-Z0-9]*$</ code > , the function:</ p >
5
- < pre >
5
+ < pre data-diff-id =" 1 " data-diff-type =" noncompliant " >
6
6
function DoSomething(){ // Noncompliant
7
7
// ...
8
8
}
9
9
</ pre >
10
10
< p > should be renamed to</ p >
11
- < pre >
11
+ < pre data-diff-id =" 1 " data-diff-type =" compliant " >
12
12
function doSomething(){
13
13
// ...
14
14
}
15
15
</ pre >
16
+ < p > In case the Drupal framework is detected and the default regex is not replaced, it will follow the PHP coding standards for Drupal.</ p >
17
+ < pre data-diff-id ="2 " data-diff-type ="noncompliant ">
18
+ function doSomething(){ // Noncompliant
19
+ // ...
20
+ }
21
+ </ pre >
22
+ < p > should be renamed to</ p >
23
+ < pre data-diff-id ="2 " data-diff-type ="compliant ">
24
+ function do_something(){
25
+ // ...
26
+ }
27
+ </ pre >
16
28
< h3 > Exceptions</ h3 >
17
29
< p > Methods with an < code > @inheritdoc</ code > annotation, as well as magic methods (< code > __construct()</ code > , < code > __destruct()</ code > ,
18
30
< code > __call()</ code > , < code > __callStatic()</ code > , < code > __get()</ code > , < code > __set()</ code > , < code > __isset()</ code > , < code > __unset()</ code > ,
@@ -27,4 +39,9 @@ <h3>Exceptions</h3>
27
39
*/
28
40
function myFunc(){...} // Compliant by exception
29
41
</ pre >
42
+ < h2 > References</ h2 >
43
+ < ul >
44
+ < li > < a href ="https://www.drupal.org/docs/develop/standards/php/php-coding-standards#s-functions-and-variables "> Drupal - Naming Conventions -
45
+ Functions and variables</ a > </ li >
46
+ </ ul >
30
47
0 commit comments