20 lines
233 B
Plaintext
20 lines
233 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
With the default regular expression ``++^[a-z][a-zA-Z0-9]*$++``:
|
|
|
|
----
|
|
class MyClass {
|
|
$my_field;
|
|
}
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
class MyClass {
|
|
$myField;
|
|
}
|
|
----
|