14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
![]() |
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
<?php
|
||
|
class MyClass {
|
||
|
|
||
|
public static $name = "Bob"; // Compliant
|
||
|
|
||
|
public static function doSomething($arg) { // Compliant
|
||
|
//...
|
||
|
}
|
||
|
//...
|
||
|
}
|
||
|
----
|