8 lines
92 B
PHP
8 lines
92 B
PHP
<?php
|
|
class ClassWithStaticMethod
|
|
{
|
|
public static function staticMethod()
|
|
{
|
|
}
|
|
}
|