Travis Swientek e5163bb90b Added PHPUnit
2013-07-18 13:01:36 -05:00

13 lines
185 B
PHP

<?php
class StaticMockTestClass
{
public static function doSomething()
{
}
public static function doSomethingElse()
{
return static::doSomething();
}
}