16 lines
211 B
Plaintext
16 lines
211 B
Plaintext
== Compliant Solution
|
|
|
|
[source,text]
|
|
----
|
|
<?php
|
|
class MyClass {
|
|
|
|
public static $name = "Bob"; // Compliant
|
|
|
|
public static function doSomething($arg) { // Compliant
|
|
//...
|
|
}
|
|
//...
|
|
}
|
|
----
|