1<?php
2class ClassWithStaticMethod
3{
4    public static function staticMethod()
5    {
6    }
7}
8