StaticMockTestClass.php 185 B

12345678910111213
  1. <?php
  2. class StaticMockTestClass
  3. {
  4. public static function doSomething()
  5. {
  6. }
  7. public static function doSomethingElse()
  8. {
  9. return static::doSomething();
  10. }
  11. }