DummyTest.php 251 B

123456789101112131415161718
  1. <?php
  2. namespace Psr\Log\Test;
  3. /**
  4. * This class is internal and does not follow the BC promise.
  5. *
  6. * Do NOT use this class in any way.
  7. *
  8. * @internal
  9. */
  10. class DummyTest
  11. {
  12. public function __toString()
  13. {
  14. return 'DummyTest';
  15. }
  16. }