Files

13 lines
185 B
PHP
Raw Permalink Normal View History

2019-03-04 16:08:27 +08:00
<?php
class StaticMockTestClass
{
public static function doSomething()
{
}
public static function doSomethingElse()
{
return static::doSomething();
}
}