Files
espocrm/vendor/phpunit/phpunit-mock-objects/Tests/_files/StaticMockTestClass.php
Taras Machyshyn 417576fd5e change instance
2013-11-01 13:49:54 +02:00

13 lines
185 B
PHP
Executable File

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