gmarche/vendor/phpunit/phpunit-mock-objects/tests/_fixture/StaticMockTestClass.php

13 lines
185 B
PHP
Raw Permalink Normal View History

2019-10-25 00:13:47 +02:00
<?php
class StaticMockTestClass
{
public static function doSomething()
{
}
public static function doSomethingElse()
{
return static::doSomething();
}
}